Lines Matching refs:r
67 double r= randx(); in randy() local
68 r = frexp(r, &pow); in randy()
69 return ldexp(r, randi() & 0x1f); in randy()
76 double r; in test_frexp() local
98 r = frexp(x, &pow); in test_frexp()
99 if (r > 1.0 || r < -1.0) in test_frexp()
105 gives = ldexp(r ,pow); in test_frexp()
116 r = (double) frexpf(xf, &pow); in test_frexp()
117 if (r > 1.0 || r < -1.0) in test_frexp()
123 gives = (double) ldexpf(r ,pow); in test_frexp()
136 r = frexp(64.0, &i); in test_frexp()
138 test_mok(r, 0.5,64); in test_frexp()
141 r = frexp(96.0, &i); in test_frexp()
143 test_mok(r, 0.75, 64); in test_frexp()
176 volatile double r = modf(n, &intpart); in test_mod() local
178 test_mok(intpart + r, n, 63); in test_mod()
193 volatile double r = (double) modff(n, &intpart); in test_mod() local
195 test_mok((double) intpart + r, (double) n, 32); in test_mod()