Lines Matching refs:exp
42 exp: 0,
46 exp: F::INFINITE_POWER,
87 exp: 0,
113 fp.exp += F::EXPONENT_BIAS;
116 if -fp.exp + 1 > 65 {
123 fp.exp += F::INVALID_FP;
130 if -fp.exp + 1 == 65 {
177 debug_assert!(fp.exp >= -64);
185 // This is always a valid u32, since `fp.exp >= -64`
192 let extrabits = match fp.exp <= -mantissa_shift {
196 true => 1 - fp.exp,
297 fp.exp -= shift;
339 exp: x.exp + y.exp + 64,
369 let exp = (1 - 64) + ((self.log2 * index as i64) >> self.log2_shift);
372 exp: exp as i32,
380 let exp = (1 - 64) + ((self.log2 * biased_e) >> self.log2_shift);
383 exp: exp as i32,