Lines Matching refs:r
37 long double r; in do_test() local
39 r = modfl (x, &q); in do_test()
40 if (q != (long double) 0x100000001ll || r != 0.5) in do_test()
50 long double r; in do_test() local
70 r = frexpl (x, &e); in do_test()
71 if (r != m) in do_test()
73 printf ("mantissa incorrect: %.20La\n", r); in do_test()
91 r = frexpl (x, &e); in do_test()
92 if (r != 0.5L) in do_test()
94 printf ("mantissa incorrect: %.20La\n", r); in do_test()
112 long double r = frexpl (LDBL_MIN * LDBL_EPSILON, &e); in do_test()
114 if (r != 0.5) in do_test()
117 r); in do_test()
133 double r; in do_test() local
135 r = modf (x, &q); in do_test()
136 if (q != (double) 0x100000001ll || r != 0.5) in do_test()
947 long double r; in do_test() local
949 r = scalbl (u.d, 0.0); in do_test()
950 if (!isnan (r)) in do_test()
955 else if (memcmp (&r, &u.d, sizeof (double)) != 0) in do_test()
965 long double r; in do_test() local
968 r = scalbl (LDBL_MIN, 2147483647); in do_test()
969 if (! isinf (r)) in do_test()
974 else if (signbit (r) != 0) in do_test()
988 r = scalbl (LDBL_MAX, -2147483647); in do_test()
989 if (r != 0.0) in do_test()
994 else if (signbit (r) != 0) in do_test()