Lines Matching refs:p_l
69 let mut p_l: f32;
296 p_l = v - (p_h - u);
298 z_l = CP_L * p_h + p_l * CP + i!(DP_L, k as usize);
310 p_l = (y - y1) * t1 + y * t2;
312 z = p_l + p_h;
319 if p_l + OVT > z - p_h {
328 && p_l <= z - p_h
334 * compute 2**(p_h+p_l)
350 t = p_l + p_h;
354 v = (p_l - (t - p_h)) * LG2 + t * LG2_L;
866 let p_l = v - (p_h - u);
868 let z_l: f64 = CP_L * p_h + p_l * CP + i!(DP_L, k as usize);
878 let p_l: f64 = (y - y1) * t1 + y * t2;
880 let z: f64 = p_l + p_h;
892 if p_l + OVT > z - p_h {
904 if p_l <= z - p_h {
909 /* compute 2**(p_h+p_l) */
926 let t: f64 = with_set_low_word(p_l + p_h, 0);
928 let v: f64 = (p_l - (t - p_h)) * LG2 + t * LG2_L;