Home
last modified time | relevance | path

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

/external/chromium_org/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/chromium_org/third_party/WebKit/Source/wtf/dtoa/
Ddouble.h234 uint64_t biased_exponent; in DiyFpToUint64() local
236 biased_exponent = 0; in DiyFpToUint64()
238 biased_exponent = static_cast<uint64_t>(exponent + kExponentBias); in DiyFpToUint64()
241 (biased_exponent << kPhysicalSignificandSize); in DiyFpToUint64()
/external/chromium_org/third_party/mesa/src/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()
/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()