Home
last modified time | relevance | path

Searched refs:countLeadingOnes (Results 1 – 25 of 46) sorted by relevance

12

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DAPIntTest.cpp42 EXPECT_EQ(126u, Minus3.countLeadingOnes()); in TEST()
47 EXPECT_EQ(128u, Minus1.countLeadingOnes()); in TEST()
58 EXPECT_EQ(32u, i33minus2.countLeadingOnes()); in TEST()
69 EXPECT_EQ(0u, i61.countLeadingOnes()); in TEST()
78 EXPECT_EQ(0u, i61.countLeadingOnes()); in TEST()
89 EXPECT_EQ(0u, i65.countLeadingOnes()); in TEST()
98 EXPECT_EQ(1u, i65minus.countLeadingOnes()); in TEST()
106 EXPECT_EQ(128u, u128max.countLeadingOnes()); in TEST()
115 EXPECT_EQ(0u, u64max.countLeadingOnes()); in TEST()
124 EXPECT_EQ(0u, zero.countLeadingOnes()); in TEST()
[all …]
/external/swiftshader/third_party/LLVM/unittests/ADT/
DAPIntTest.cpp29 EXPECT_EQ(126u, Minus3.countLeadingOnes()); in TEST()
34 EXPECT_EQ(128u, Minus1.countLeadingOnes()); in TEST()
48 EXPECT_EQ(32u, i33minus2.countLeadingOnes()); in TEST()
62 EXPECT_EQ(1u, i65minus.countLeadingOnes()); in TEST()
70 EXPECT_EQ(128u, u128max.countLeadingOnes()); in TEST()
79 EXPECT_EQ(0u, u64max.countLeadingOnes()); in TEST()
88 EXPECT_EQ(0u, zero.countLeadingOnes()); in TEST()
98 EXPECT_EQ(0u, one.countLeadingOnes()); in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DKnownBits.h147 return Zero.countLeadingOnes(); in countMinLeadingZeros()
152 return One.countLeadingOnes(); in countMinLeadingOnes()
DMathExtras.h462 std::size_t countLeadingOnes(T Value, ZeroBehavior ZB = ZB_Width) {
/external/llvm/unittests/Support/
DMathExtrasTest.cpp173 TEST(MathExtras, countLeadingOnes) { in TEST() argument
176 EXPECT_EQ(31u - i, countLeadingOnes(0xFFFFFFFF ^ (1 << i))); in TEST()
180 EXPECT_EQ(63u - i, countLeadingOnes(0xFFFFFFFFFFFFFFFFULL ^ (1LL << i))); in TEST()
184 EXPECT_EQ(31u - i, countLeadingOnes(0xFFFFFFFF ^ (1 << i))); in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DMathExtrasTest.cpp217 TEST(MathExtras, countLeadingOnes) { in TEST() argument
220 EXPECT_EQ(31u - i, countLeadingOnes(0xFFFFFFFF ^ (1 << i))); in TEST()
224 EXPECT_EQ(63u - i, countLeadingOnes(0xFFFFFFFFFFFFFFFFULL ^ (1LL << i))); in TEST()
228 EXPECT_EQ(31u - i, countLeadingOnes(0xFFFFFFFF ^ (1 << i))); in TEST()
/external/llvm/unittests/ADT/
DAPIntTest.cpp37 EXPECT_EQ(126u, Minus3.countLeadingOnes()); in TEST()
42 EXPECT_EQ(128u, Minus1.countLeadingOnes()); in TEST()
56 EXPECT_EQ(32u, i33minus2.countLeadingOnes()); in TEST()
69 EXPECT_EQ(0u, i65.countLeadingOnes()); in TEST()
78 EXPECT_EQ(1u, i65minus.countLeadingOnes()); in TEST()
86 EXPECT_EQ(128u, u128max.countLeadingOnes()); in TEST()
95 EXPECT_EQ(0u, u64max.countLeadingOnes()); in TEST()
104 EXPECT_EQ(0u, zero.countLeadingOnes()); in TEST()
114 EXPECT_EQ(0u, one.countLeadingOnes()); in TEST()
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMUnwindOpAsm.cpp110 auto RangeLen = countLeadingOnes(Regs << (32 - RangeMSB)); in EmitVFPRegSave()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMUnwindOpAsm.cpp112 auto RangeLen = countLeadingOnes(Regs << (32 - RangeMSB)); in EmitVFPRegSave()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DAPInt.h1547 return BitWidth - countLeadingOnes() + 1; in getMinSignedBits()
1605 unsigned countLeadingOnes() const { in countLeadingOnes() function
1607 return llvm::countLeadingOnes(U.VAL << (APINT_BITS_PER_WORD - BitWidth)); in countLeadingOnes()
1614 return isNegative() ? countLeadingOnes() : countLeadingZeros(); in getNumSignBits()
DSmallBitVector.h268 return NumBaseBits - countLeadingOnes(Bits); in find_last_unset()
/external/llvm/include/llvm/ADT/
DAPInt.h1324 return BitWidth - countLeadingOnes() + 1; in getMinSignedBits()
1383 unsigned countLeadingOnes() const;
1388 return isNegative() ? countLeadingOnes() : countLeadingZeros(); in getNumSignBits()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DAPInt.h1155 return BitWidth - countLeadingOnes() + 1; in getMinSignedBits()
1207 unsigned countLeadingOnes() const;
1212 return isNegative() ? countLeadingOnes() : countLeadingZeros(); in getNumSignBits()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h1300 return BitWidth - countLeadingOnes() + 1; in getMinSignedBits()
1359 unsigned countLeadingOnes() const;
1364 return isNegative() ? countLeadingOnes() : countLeadingZeros(); in getNumSignBits()
/external/llvm/lib/Analysis/
DValueTracking.cpp354 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() + in computeKnownBitsMul()
355 KnownZero2.countLeadingOnes(), in computeKnownBitsMul()
763 APInt::getHighBitsSet(BitWidth, RHSKnownZero.countLeadingOnes()); in computeKnownBitsFromAssume()
775 APInt::getHighBitsSet(BitWidth, RHSKnownZero.countLeadingOnes()+1); in computeKnownBitsFromAssume()
778 APInt::getHighBitsSet(BitWidth, RHSKnownZero.countLeadingOnes()); in computeKnownBitsFromAssume()
940 unsigned LeadZ = KnownZero2.countLeadingOnes(); in computeKnownBitsFromOperator()
1138 unsigned Leaders = std::max(KnownZero.countLeadingOnes(), in computeKnownBitsFromOperator()
1139 KnownZero2.countLeadingOnes()); in computeKnownBitsFromOperator()
2166 return std::max(FirstAnswer, KnownZero.countLeadingOnes()); in ComputeNumSignBits()
2169 return std::max(FirstAnswer, KnownOne.countLeadingOnes()); in ComputeNumSignBits()
[all …]
/external/swiftshader/third_party/LLVM/lib/Analysis/
DValueTracking.cpp214 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() + in ComputeMaskedBits()
215 KnownZero2.countLeadingOnes(), in ComputeMaskedBits()
232 unsigned LeadZ = KnownZero2.countLeadingOnes(); in ComputeMaskedBits()
532 unsigned Leaders = std::max(KnownZero.countLeadingOnes(), in ComputeMaskedBits()
533 KnownZero2.countLeadingOnes()); in ComputeMaskedBits()
/external/llvm/lib/Support/
DAPInt.cpp698 unsigned APInt::countLeadingOnes() const { in countLeadingOnes() function in APInt
700 return llvm::countLeadingOnes(VAL << (APINT_BITS_PER_WORD - BitWidth)); in countLeadingOnes()
711 unsigned Count = llvm::countLeadingOnes(pVal[i] << shift); in countLeadingOnes()
717 Count += llvm::countLeadingOnes(pVal[i]); in countLeadingOnes()
2069 Overflow = ShAmt.uge(countLeadingOnes()); in sshl_ov()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp676 unsigned APInt::countLeadingOnes() const { in countLeadingOnes() function in APInt
678 return llvm::countLeadingOnes(VAL << (APINT_BITS_PER_WORD - BitWidth)); in countLeadingOnes()
689 unsigned Count = llvm::countLeadingOnes(pVal[i] << shift); in countLeadingOnes()
695 Count += llvm::countLeadingOnes(pVal[i]); in countLeadingOnes()
2043 Overflow = ShAmt.uge(countLeadingOnes()); in sshl_ov()
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineSimplifyDemanded.cpp738 unsigned Leaders = KnownZero2.countLeadingOnes(); in SimplifyDemandedUseBits()
740 KnownZero2.countLeadingOnes()); in SimplifyDemandedUseBits()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineSimplifyDemanded.cpp728 unsigned Leaders = KnownZero2.countLeadingOnes(); in SimplifyDemandedUseBits()
730 KnownZero2.countLeadingOnes()); in SimplifyDemandedUseBits()
/external/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64AddressingModes.h246 unsigned CLO = countLeadingOnes(Imm); in processLogicalImmediate()
/external/llvm/include/llvm/Support/
DMathExtras.h414 std::size_t countLeadingOnes(T Value, ZeroBehavior ZB = ZB_Width) {
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64AddressingModes.h247 unsigned CLO = countLeadingOnes(Imm); in processLogicalImmediate()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMathExtras.h436 std::size_t countLeadingOnes(T Value, ZeroBehavior ZB = ZB_Width) {
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DAPInt.cpp558 unsigned Count = llvm::countLeadingOnes(U.pVal[i] << shift); in countLeadingOnesSlowCase()
564 Count += llvm::countLeadingOnes(U.pVal[i]); in countLeadingOnesSlowCase()
1945 Overflow = ShAmt.uge(countLeadingOnes()); in sshl_ov()

12