Lines Matching refs:ax
65 let mut ax: f32; in powf() localVariable
174 ax = fabsf(x); in powf()
178 z = ax; in powf()
229 t = ax - 1.; /* t has 20 trailing zeros */ in powf()
247 ax *= TWO24; in powf()
249 ix = ax.to_bits() as i32; in powf()
266 ax = f32::from_bits(ix as u32); in powf()
269 u = ax - i!(BP, k as usize); /* bp[0]=1.0, bp[1]=1.5 */ in powf()
270 v = 1.0 / (ax + i!(BP, k as usize)); in powf()
278 t_l = ax - (t_h - i!(BP, k as usize)); in powf()
725 let mut ax: f64 = fabsd(x); in powd() localVariable
730 let mut z: f64 = ax; in powd()
802 let t: f64 = ax - 1.0; /* t has 20 trailing zeros */ in powd()
814 ax *= TWO53; in powd()
816 ix = get_high_word(ax) as i32; in powd()
836 ax = with_set_high_word(ax, ix as u32); in powd()
839 let u: f64 = ax - i!(BP, k as usize); /* bp[0]=1.0, bp[1]=1.5 */ in powd()
840 let v: f64 = 1.0 / (ax + i!(BP, k as usize)); in powd()
849 let t_l: f64 = ax - (t_h - i!(BP, k as usize)); in powd()