Lines Matching refs:p
29 __remquol (long double x, long double p, int *quo) in __remquol() argument
36 GET_LDOUBLE_WORDS (ep, hp, lp, p); in __remquol()
44 return (x * p) / (x * p); /* p = 0 */ in __remquol()
48 return (x * p) / (x * p); in __remquol()
51 x = __ieee754_fmodl (x, 8 * p); /* now x < 8p */ in __remquol()
60 p = fabsl (p); in __remquol()
63 if (ep <= 0x7ffc && x >= 4 * p) in __remquol()
65 x -= 4 * p; in __remquol()
68 if (ep <= 0x7ffd && x >= 2 * p) in __remquol()
70 x -= 2 * p; in __remquol()
76 if (x + x > p) in __remquol()
78 x -= p; in __remquol()
80 if (x + x >= p) in __remquol()
82 x -= p; in __remquol()
89 long double p_half = 0.5 * p; in __remquol()
92 x -= p; in __remquol()
96 x -= p; in __remquol()