HomeSort by: relevance | last modified time | path
    Searched defs:exponent_mask (Results 1 - 3 of 3) sorted by relevancy

  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
floating_from_chars.cc 235 constexpr uint16_t exponent_mask = 0x7C00; variable
238 if ((value.bits & exponent_mask) == 0) {
244 am.power2 = int32_t((value.bits & exponent_mask) >> mantissa_bits);
261 constexpr uint16_t exponent_mask = 0x7F80; variable
264 if ((value.bits & exponent_mask) == 0) {
270 am.power2 = int32_t((value.bits & exponent_mask) >> mantissa_bits);
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/fast_float/
fast_float.h 372 static inline constexpr equiv_uint exponent_mask();
495 binary_format<float>::exponent_mask() { function in class:fast_float::span::binary_format
499 binary_format<double>::exponent_mask() { function in class:fast_float::span::binary_format
2495 constexpr equiv_uint exponent_mask = binary_format<T>::exponent_mask();
2503 if ((bits & exponent_mask) == 0) {
2509 am.power2 = int32_t((bits & exponent_mask) >> binary_format<T>::mantissa_explicit_bits());
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/fast_float/
fast_float.h 2473 constexpr uint32_t exponent_mask = 0x7F800000; variable
2478 if ((bits & exponent_mask) == 0) {
2484 am.power2 = int32_t((bits & exponent_mask) >> binary_format<T>::mantissa_explicit_bits());
2489 constexpr uint64_t exponent_mask = 0x7FF0000000000000; variable
2494 if ((bits & exponent_mask) == 0) {
2500 am.power2 = int32_t((bits & exponent_mask) >> binary_format<T>::mantissa_explicit_bits());

Completed in 55 milliseconds