Home
last modified time | relevance | path

Searched refs:p_l (Results 1 – 4 of 4) sorted by relevance

/freebsd/lib/msun/src/
H A De_powf.c58 float z,ax,z_h,z_l,p_h,p_l; in powf() local
191 p_l = v-(p_h-u); in powf()
193 z_l = cp_l*p_h+p_l*cp+dp_l[k]; in powf()
205 p_l = (y-y1)*t1+y*t2; in powf()
207 z = p_l+p_h; in powf()
212 if(p_l+ovt>z-p_h) return sn*huge*huge; /* overflow */ in powf()
217 if(p_l<=z-p_h) return sn*tiny*tiny; /* underflow */ in powf()
220 * compute 2**(p_h+p_l) in powf()
233 t = p_l+p_h; in powf()
237 v = (p_l in powf()
[all...]
H A De_pow.c99 double z,ax,z_h,z_l,p_h,p_l; in pow() local
246 p_l = v-(p_h-u); in pow()
248 z_l = cp_l*p_h+p_l*cp+dp_l[k]; in pow()
259 p_l = (y-y1)*t1+y*t2; in pow()
261 z = p_l+p_h; in pow()
267 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */ in pow()
273 if(p_l<=z-p_h) return s*tiny*tiny; /* underflow */ in pow()
277 * compute 2**(p_h+p_l) in pow()
291 t = p_l+p_h; in pow()
294 v = (p_l in pow()
[all...]
/freebsd/lib/msun/ld128/
H A De_powl.c147 long double z, ax, z_h, z_l, p_h, p_l; in powl() local
350 p_l = v - (p_h - u); in powl()
352 z_l = cp_l * p_h + p_l * cp + dp_l[k]; in powl()
373 p_l = (y - yy1) * t1 + y * t2; in powl()
375 z = p_l + p_h; in powl()
386 if (p_l + ovt > z - p_h) in powl()
399 if (p_l <= z - p_h) in powl()
413 t = p_l + p_h; in powl()
419 v = (p_l - (t - p_h)) * lg2 + t * lg2_l; in powl()
/freebsd/crypto/openssl/apps/
H A Dtestdsa.h197 int p_l; member
211 st.p_l = sizeof(dsa##bits##_p); \
244 p = BN_bin2bn(dsa_t.p, dsa_t.p_l, NULL); in get_dsa()