Lines Matching refs:p_h
173 float z,ax,z_h,z_l,p_h,p_l; in powf() local
317 p_h = u + v; in powf()
318 GET_FLOAT_WORD(is, p_h); in powf()
319 SET_FLOAT_WORD(p_h, is & 0xfffff000); in powf()
320 p_l = v - (p_h - u); in powf()
321 z_h = cp_h*p_h; /* cp_h+cp_l = 2/(3*log2) */ in powf()
322 z_l = cp_l*p_h + p_l*cp+dp_l[k]; in powf()
335 p_h = y1*t1; in powf()
336 z = p_l + p_h; in powf()
341 if (p_l + ovt > z - p_h) in powf()
346 if (p_l <= z-p_h) in powf()
362 p_h -= t; in powf()
364 t = p_l + p_h; in powf()
368 v = (p_l-(t-p_h))*lg2 + t*lg2_l; in powf()