Home
last modified time | relevance | path

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

/external/llvm-project/flang/lib/Decimal/
Ddecimal-to-binary.cpp180 static constexpr IntType topBit{IntType{1} << (precision - 1)}; member in Fortran::decimal::IntermediateFloat
181 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()
/external/llvm-project/flang/include/flang/Common/
Duint128.h121 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};