Lines Matching refs:tr

279     float tr, rr;  in test_float_arith()  local
281 tr = (*tf)(x, y); in test_float_arith()
282 if (memcmp(&tr, &rr, sizeof(float)) != 0) in test_float_arith()
287 fputs("\n\tfalse = ", stdout); print_float(tr); in test_float_arith()
296 double tr, rr; in test_double_arith() local
311 tr = (*tf)(x, y); in test_double_arith()
312 if (memcmp(&tr, &rr, sizeof(double)) != 0) in test_double_arith()
317 fputs("\n\tfalse = ", stdout); print_double(tr); in test_double_arith()
324 double tr, rr; in test_float_double_conv() local
326 tr = __extendsfdf2(x); in test_float_double_conv()
327 if (memcmp(&tr, &rr, sizeof(double)) != 0) in test_float_double_conv()
331 fputs("\n\tfalse = ", stdout); print_double(tr); in test_float_double_conv()
338 float tr, rr; in test_double_float_conv() local
340 tr = __truncdfsf2(x); in test_double_float_conv()
341 if (memcmp(&tr, &rr, sizeof(float)) != 0) in test_double_float_conv()
345 fputs("\n\tfalse = ", stdout); print_float(tr); in test_double_float_conv()
352 float tr, rr; in test_int_float_conv() local
354 tr = __floatsisf(x); in test_int_float_conv()
355 if (memcmp(&tr, &rr, sizeof(float)) != 0) in test_int_float_conv()
359 fputs("\n\tfalse = ", stdout); print_float(tr); in test_int_float_conv()
366 double tr, rr; in test_int_double_conv() local
368 tr = __floatsidf(x); in test_int_double_conv()
369 if (memcmp(&tr, &rr, sizeof(double)) != 0) in test_int_double_conv()
373 fputs("\n\tfalse = ", stdout); print_double(tr); in test_int_double_conv()
380 int tr, rr; in test_float_int_conv() local
382 tr = __fixsfsi(x); in test_float_int_conv()
383 if (rr != tr) in test_float_int_conv()
386 printf("\n\ttrue = %d\n\tfalse = %d\n", rr, tr); in test_float_int_conv()
392 int tr, rr; in test_double_int_conv() local
394 tr = __fixsfsi(x); in test_double_int_conv()
395 if (rr != tr) in test_double_int_conv()
398 printf("\n\ttrue = %d\n\tfalse = %d\n", rr, tr); in test_double_int_conv()
414 int tr, rr; in test_float_cmp() local
416 tr = (*tf)(x, y); in test_float_cmp()
417 if (cmp0(rr) != cmp0(tr)) in test_float_cmp()
421 printf("\n\ttrue = %d\n\tfalse = %d\n", rr, tr); in test_float_cmp()
430 int tr, rr; in test_double_cmp() local
432 tr = (*tf)(x, y); in test_double_cmp()
433 if (cmp0(rr) != cmp0(tr)) in test_double_cmp()
437 printf("\n\ttrue = %d\n\tfalse = %d\n", rr, tr); in test_double_cmp()