Searched refs:RawBits (Results 1 – 10 of 10) sorted by relevance
/external/llvm-project/flang/unittests/Evaluate/ |
D | real.cpp | 60 TEST(zero.RawBits().IsZero())(desc); in basicTests() 61 MATCH(0, zero.RawBits().ToUInt64())(desc); in basicTests() 62 TEST(zero.ABS().RawBits().IsZero())(desc); in basicTests() 63 TEST(zero.Negate().RawBits().IEOR(Word::MASKL(1)).IsZero())(desc); in basicTests() 70 TEST(minusZero.ABS().RawBits().IsZero())(desc); in basicTests() 71 TEST(minusZero.Negate().RawBits().IsZero())(desc); in basicTests() 73 MATCH(0, minusZero.RawBits().LEADZ())(desc); in basicTests() 74 MATCH(1, minusZero.RawBits().POPCNT())(desc); in basicTests() 78 MATCH(0, vr.value.RawBits().ToUInt64())(desc); in basicTests() 84 MATCH(R::bits, nan.RawBits().POPCNT())(desc); in basicTests() [all …]
|
/external/llvm-project/llvm/lib/Support/ |
D | ScaledNumber.cpp | 184 uint64_t RawBits[2] = {D, AdjustedE}; in toStringAPFloat() local 185 APFloat Float(APFloat::x87DoubleExtended(), APInt(80, RawBits)); in toStringAPFloat()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | ScaledNumber.cpp | 184 uint64_t RawBits[2] = {D, AdjustedE}; in toStringAPFloat() local 185 APFloat Float(APFloat::x87DoubleExtended(), APInt(80, RawBits)); in toStringAPFloat()
|
/external/llvm/lib/Support/ |
D | ScaledNumber.cpp | 185 uint64_t RawBits[2] = {D, AdjustedE}; in toStringAPFloat() local 186 APFloat Float(APFloat::x87DoubleExtended, APInt(80, RawBits)); in toStringAPFloat()
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | BitVector.h | 834 BitWord *RawBits = static_cast<BitWord *>( in allocate() local 836 return MutableArrayRef<BitWord>(RawBits, NumWords); in allocate()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | BitVector.h | 847 BitWord *RawBits = static_cast<BitWord *>( in allocate() local 849 return MutableArrayRef<BitWord>(RawBits, NumWords); in allocate()
|
/external/llvm-project/flang/include/flang/Evaluate/ |
D | real.h | 282 constexpr Word RawBits() const { return word_; } in RawBits() function
|
/external/llvm-project/flang/lib/Evaluate/ |
D | fold-implementation.h | 1456 From converted{From::ConvertUnsigned(real.RawBits()).value}; in ToReal()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 6238 APInt RawBits = Cst->getValueAPF().bitcastToAPInt(); in getTargetConstantBitsFromNode() local 6239 SmallVector<APInt, 64> SrcEltBits(1, RawBits); in getTargetConstantBitsFromNode() 6274 APInt RawBits = Cst->getValueAPF().bitcastToAPInt(); in getTargetConstantBitsFromNode() local 6275 SrcEltBits[i] = RawBits.zextOrTrunc(SrcEltSizeInBits); in getTargetConstantBitsFromNode()
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 6544 APInt RawBits = Cst->getValueAPF().bitcastToAPInt(); in getTargetConstantBitsFromNode() local 6545 SmallVector<APInt, 64> SrcEltBits(1, RawBits); in getTargetConstantBitsFromNode() 6580 APInt RawBits = Cst->getValueAPF().bitcastToAPInt(); in getTargetConstantBitsFromNode() local 6581 SrcEltBits[i] = RawBits.zextOrTrunc(SrcEltSizeInBits); in getTargetConstantBitsFromNode()
|