Lines Matching refs:exp
42 exp: 0, in bellerophon()
46 exp: F::INFINITE_POWER, in bellerophon()
87 exp: 0, in bellerophon()
113 fp.exp += F::EXPONENT_BIAS; in bellerophon()
116 if -fp.exp + 1 > 65 { in bellerophon()
123 fp.exp += F::INVALID_FP; in bellerophon()
130 if -fp.exp + 1 == 65 { in bellerophon()
177 debug_assert!(fp.exp >= -64); in error_is_accurate()
192 let extrabits = match fp.exp <= -mantissa_shift { in error_is_accurate()
196 true => 1 - fp.exp, in error_is_accurate()
297 fp.exp -= shift; in normalize()
339 exp: x.exp + y.exp + 64, in mul()
369 let exp = (1 - 64) + ((self.log2 * index as i64) >> self.log2_shift); in get_small() localVariable
372 exp: exp as i32, in get_small()
380 let exp = (1 - 64) + ((self.log2 * biased_e) >> self.log2_shift); in get_large() localVariable
383 exp: exp as i32, in get_large()