Home
last modified time | relevance | path

Searched refs:exponent_mask (Results 1 – 6 of 6) sorted by relevance

/third_party/glslang/SPIRV/
Dhex_float.h308 static const uint_type exponent_mask =
320 (exponent_mask >> num_fraction_bits) - exponent_bias;
336 return static_cast<uint_type>((getBits() & exponent_mask) >>
428 exponent_mask);
597 (getBits() & exponent_mask) == exponent_mask && significand != 0;
601 (significand == 0 && (getBits() & exponent_mask) == exponent_mask));
607 (negate ? other_T::sign_mask : 0) | other_T::exponent_mask)));
622 (negate ? other_T::sign_mask : 0) | other_T::exponent_mask |
683 (bits & HF::exponent_mask) >> HF::num_fraction_bits);
1039 HF::exponent_mask);
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
Dhex_float.h341 static const uint_type exponent_mask =
353 (exponent_mask >> num_fraction_bits) - exponent_bias;
368 return static_cast<uint_type>((getBits() & exponent_mask) >>
460 exponent_mask);
667 (getBits() & exponent_mask) == exponent_mask && significand != 0;
671 (significand == 0 && (getBits() & exponent_mask) == exponent_mask));
677 (negate ? other_T::sign_mask : 0) | other_T::exponent_mask)));
692 (negate ? other_T::sign_mask : 0) | other_T::exponent_mask |
753 (bits & HF::exponent_mask) >> HF::num_fraction_bits);
1123 HF::exponent_mask);
/third_party/skia/third_party/externals/spirv-tools/source/util/
Dhex_float.h341 static const uint_type exponent_mask =
353 (exponent_mask >> num_fraction_bits) - exponent_bias;
368 return static_cast<uint_type>((getBits() & exponent_mask) >>
460 exponent_mask);
667 (getBits() & exponent_mask) == exponent_mask && significand != 0;
671 (significand == 0 && (getBits() & exponent_mask) == exponent_mask));
677 (negate ? other_T::sign_mask : 0) | other_T::exponent_mask)));
692 (negate ? other_T::sign_mask : 0) | other_T::exponent_mask |
753 (bits & HF::exponent_mask) >> HF::num_fraction_bits);
1123 HF::exponent_mask);
/third_party/spirv-tools/source/util/
Dhex_float.h342 static const uint_type exponent_mask =
354 (exponent_mask >> num_fraction_bits) - exponent_bias;
369 return static_cast<uint_type>((getBits() & exponent_mask) >>
461 exponent_mask);
668 (getBits() & exponent_mask) == exponent_mask && significand != 0;
672 (significand == 0 && (getBits() & exponent_mask) == exponent_mask));
678 (negate ? other_T::sign_mask : 0) | other_T::exponent_mask)));
693 (negate ? other_T::sign_mask : 0) | other_T::exponent_mask |
754 (bits & HF::exponent_mask) >> HF::num_fraction_bits);
1171 HF::exponent_mask);
/third_party/node/deps/v8/src/codegen/arm64/
Dutils-arm64.cc56 const uint16_t exponent_mask = exponent_max << kFloat16MantissaBits; in float16classify() local
59 const uint16_t exponent = (value & exponent_mask) >> kFloat16MantissaBits; in float16classify()
/third_party/vixl/src/
Dutils-vixl.cc171 uint16_t exponent_mask = exponent_max << 10; in Float16Classify() local
174 uint16_t exponent = (bits & exponent_mask) >> 10; in Float16Classify()