Lines Matching refs:r
53 long double r, rr, s; in fmal() local
88 r = x * y; in fmal()
90 r = nextafterl(r, 0); in fmal()
92 return (r); in fmal()
97 r = x * y; in fmal()
99 r = nextafterl(r, -INFINITY); in fmal()
101 return (r); in fmal()
106 r = x * y; in fmal()
108 r = nextafterl(r, INFINITY); in fmal()
110 return (r); in fmal()
161 r = c + zs; in fmal()
162 s = r - c; in fmal()
163 rr = (c - (r - s)) + (zs - s) + cc; in fmal()
166 if (spread + ilogbl(r) > -16383) { in fmal()
168 r = r + rr; in fmal()
174 p = ldexpl(copysignl(0x1p-16382L, r), -spread); in fmal()
175 c = r + p; in fmal()
176 s = c - r; in fmal()
177 cc = (r - (c - s)) + (p - s) + rr; in fmal()
179 r = (c + cc) - p; in fmal()
181 return (ldexpl(r, spread)); in fmal()