Home
last modified time | relevance | path

Searched refs:biased_exponent (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Ddouble.h196 uint64_t biased_exponent; in DiyFpToUint64() local
198 biased_exponent = 0; in DiyFpToUint64()
200 biased_exponent = static_cast<uint64_t>(exponent + kExponentBias); in DiyFpToUint64()
203 (biased_exponent << kPhysicalSignificandSize); in DiyFpToUint64()
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_inline_literals.c27 unsigned biased_exponent = (float_bits & 0x7f800000) >> 23; in ieee_754_to_r300_float() local
29 int exponent = biased_exponent - 127; in ieee_754_to_r300_float()