Lines Matching refs:p
21 remainderf(float x, float p) in remainderf() argument
28 GET_FLOAT_WORD(hp, p); in remainderf()
35 return x + p; in remainderf()
41 x = fmodf(x, p + p); /* now x < 2p */ in remainderf()
45 p = fabsf(p); in remainderf()
47 if (x + x > p) { in remainderf()
48 x -= p; in remainderf()
49 if (x + x >= p) in remainderf()
50 x -= p; in remainderf()
53 p_half = (float)0.5 * p; in remainderf()
55 x -= p; in remainderf()
57 x -= p; in remainderf()