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

/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Ddouble.h234 uint64_t biased_exponent; local
236 biased_exponent = 0;
238 biased_exponent = static_cast<uint64_t>(exponent + kExponentBias);
241 (biased_exponent << kPhysicalSignificandSize);
/external/chromium_org/v8/src/
H A Ddouble.h196 uint64_t biased_exponent; local
198 biased_exponent = 0;
200 biased_exponent = static_cast<uint64_t>(exponent + kExponentBias);
203 (biased_exponent << kPhysicalSignificandSize);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_inline_literals.c27 unsigned biased_exponent = (float_bits & 0x7f800000) >> 23; local
29 int exponent = biased_exponent - 127;
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_inline_literals.c27 unsigned biased_exponent = (float_bits & 0x7f800000) >> 23; local
29 int exponent = biased_exponent - 127;

Completed in 236 milliseconds