Lines Matching refs:p_h
59 float z, ax, z_h, z_l, p_h, p_l; in powf() local
220 p_h = u + v; in powf()
221 GET_FLOAT_WORD(is, p_h); in powf()
222 SET_FLOAT_WORD(p_h, is & 0xfffff000); in powf()
223 p_l = v - (p_h - u); in powf()
224 z_h = cp_h * p_h; /* cp_h+cp_l = 2/(3*log2) */ in powf()
225 z_l = cp_l * p_h + p_l * cp + dp_l[k]; in powf()
242 p_h = y1 * t1; in powf()
243 z = p_l + p_h; in powf()
250 if (p_l + ovt > z - p_h) in powf()
256 if (p_l <= z - p_h) in powf()
271 p_h -= t; in powf()
273 t = p_l + p_h; in powf()
277 v = (p_l - (t - p_h)) * lg2 + t * lg2_l; in powf()