Searched refs:topBit (Results 1 – 2 of 2) sorted by relevance
180 static constexpr IntType topBit{IntType{1} << (precision - 1)}; member in Fortran::decimal::IntermediateFloat181 static constexpr IntType mask{topBit + (topBit - 1)};211 bool IsFull() const { return value_ >= topBit; } in IsFull()253 while (fraction < topBit && expo > 1) { in ToBinary()280 fraction = topBit; in ToBinary()285 if (expo == 1 && fraction < topBit) { in ToBinary()297 fraction &= ~topBit; in ToBinary()
121 std::uint64_t lower{(low_ & ~topBit) + (that.low_ & ~topBit)};159 if (bits.high_ & topBit) {179 if (bits.high_ & topBit) {256 static constexpr std::uint64_t topBit{std::uint64_t{1} << 63};