Home
last modified time | relevance | path

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

/third_party/json/tests/src/
H A Dunit-to_chars.cpp20 float make_float(uint32_t sign_bit, uint32_t biased_exponent, uint32_t significand) in make_float() argument
23 assert(biased_exponent <= 0xFF); in make_float()
29 bits |= biased_exponent << 23; in make_float()
64 uint64_t biased_exponent = (e == kDenormalExponent && (f & kHiddenBit) == 0) in make_float() local
68 uint64_t bits = (f & kSignificandMask) | (biased_exponent << kPhysicalSignificandSize); in make_float()
72 double make_double(uint64_t sign_bit, uint64_t biased_exponent, uint64_t significand) in make_double() argument
75 assert(biased_exponent <= 0x7FF); in make_double()
81 bits |= biased_exponent << 52; in make_double()
116 uint64_t biased_exponent = (e == kDenormalExponent && (f & kHiddenBit) == 0) in make_double() local
120 uint64_t bits = (f & kSignificandMask) | (biased_exponent << kPhysicalSignificandSiz in make_double()
[all...]
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
H A Dieee.h273 uint64_t biased_exponent; in DiyFpToUint64() local
275 biased_exponent = 0; in DiyFpToUint64()
277 biased_exponent = static_cast<uint64_t>(exponent + kExponentBias); in DiyFpToUint64()
280 (biased_exponent << kPhysicalSignificandSize); in DiyFpToUint64()
/third_party/icu/icu4c/source/i18n/
H A Ddouble-conversion-ieee.h287 uint64_t biased_exponent; in DiyFpToUint64() local
289 biased_exponent = 0; in DiyFpToUint64()
291 biased_exponent = static_cast<uint64_t>(exponent + kExponentBias); in DiyFpToUint64()
294 (biased_exponent << kPhysicalSignificandSize); in DiyFpToUint64()
/third_party/node/deps/icu-small/source/i18n/
H A Ddouble-conversion-ieee.h287 uint64_t biased_exponent; in DiyFpToUint64() local
289 biased_exponent = 0; in DiyFpToUint64()
291 biased_exponent = static_cast<uint64_t>(exponent + kExponentBias); in DiyFpToUint64()
294 (biased_exponent << kPhysicalSignificandSize); in DiyFpToUint64()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Ddouble-conversion-ieee.h274 uint64_t biased_exponent; in DiyFpToUint64() local
276 biased_exponent = 0; in DiyFpToUint64()
278 biased_exponent = static_cast<uint64_t>(exponent + kExponentBias); in DiyFpToUint64()
281 (biased_exponent << kPhysicalSignificandSize); in DiyFpToUint64()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_inline_literals.c52 unsigned biased_exponent = (float_bits & 0x7f800000) >> 23; in ieee_754_to_r300_float() local
54 int exponent = biased_exponent - 127; in ieee_754_to_r300_float()
/third_party/skia/third_party/externals/tint/src/writer/
H A Dfloat_to_string.cc97 const int biased_exponent = in FloatToBitPreservingString() local
99 int exponent = biased_exponent - kExponentBias; in FloatToBitPreservingString()
H A Dfloat_to_string_test.cc31 float MakeFloat(int sign, int biased_exponent, int mantissa) { in MakeFloat() argument
34 const uint32_t exponent_bits = (biased_exponent & 0xffu) << 23; in MakeFloat()
/third_party/skia/third_party/externals/tint/src/writer/wgsl/
H A Dgenerator_impl_literal_test.cc29 float MakeFloat(int sign, int biased_exponent, int mantissa) { in MakeFloat() argument
32 const uint32_t exponent_bits = (biased_exponent & 0xffu) << 23; in MakeFloat()
/third_party/vk-gl-cts/framework/delibs/debase/
H A DdeFloat16Test.c29 static float getFloat32 (deUint32 sign, deUint32 biased_exponent, deUint32 mantissa) in getFloat32() argument
37 x.u = (sign << 31) | (biased_exponent << 23) | mantissa; in getFloat32()
42 static deFloat16 getFloat16 (deUint16 sign, deUint16 biased_exponent, deUint16 mantissa) in getFloat16() argument
44 return (deFloat16) ((sign << 15) | (biased_exponent << 10) | mantissa); in getFloat16()
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dparser_impl_const_literal_test.cc29 float MakeFloat(int sign, int biased_exponent, int mantissa) { in MakeFloat() argument
32 const uint32_t exponent_bits = (biased_exponent & 0xffu) << 23; in MakeFloat()

Completed in 12 milliseconds