Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
H A Dfloating_from_chars.cc610 bool nonzero_tail = false; // Whether some bit thereafter is set in the in __floating_from_chars_hex() local
650 nonzero_tail = (hexit & 0b0111) != 0; in __floating_from_chars_hex()
654 nonzero_tail |= (hexit != 0x0); in __floating_from_chars_hex()
662 __glibcxx_assert(!midpoint_bit && !nonzero_tail); in __floating_from_chars_hex()
711 nonzero_tail |= midpoint_bit; in __floating_from_chars_hex()
712 nonzero_tail |= mantissa != 0; in __floating_from_chars_hex()
719 nonzero_tail |= midpoint_bit; in __floating_from_chars_hex()
720 nonzero_tail |= (mantissa & ((1ull << (amount - 1)) - 1)) != 0; in __floating_from_chars_hex()
754 if (midpoint_bit && (nonzero_tail || (mantissa % 2) != 0)) in __floating_from_chars_hex()
759 nonzero_tail = false; in __floating_from_chars_hex()
[all …]