HomeSort by relevance Sort by last modified time
    Searched refs:isPowerOf2_32 (Results 1 - 25 of 37) sorted by null

1 2

  /external/llvm/unittests/Support/
MathExtrasTest.cpp 17 TEST(MathExtras, isPowerOf2_32) {
18 EXPECT_TRUE(isPowerOf2_32(1 << 6));
19 EXPECT_TRUE(isPowerOf2_32(1 << 12));
20 EXPECT_FALSE(isPowerOf2_32((1 << 19) + 3));
21 EXPECT_FALSE(isPowerOf2_32(0xABCDEF0));
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 124 assert(isPowerOf2_32(TyWidth) && "Ty width must be power of 2");
PPCFrameLowering.cpp 405 assert(isPowerOf2_32(MaxAlign) && isInt<16>(MaxAlign) &&
439 assert(isPowerOf2_32(MaxAlign) && isInt<16>(MaxAlign) &&
    [all...]
PPCISelDAGToDAG.cpp     [all...]
  /external/llvm/include/llvm/Support/
MathExtras.h 130 /// isPowerOf2_32 - This function returns true if the argument is a power of
131 /// two > 0. Ex. isPowerOf2_32(0x00100000U) == true (32 bit edition.)
132 inline bool isPowerOf2_32(uint32_t Value) {
  /external/llvm/lib/IR/
Attributes.cpp 77 assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
84 assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
    [all...]
Type.cpp 330 return (BitWidth > 7) && isPowerOf2_32(BitWidth);
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp 788 if (!isPowerOf2_32(NumElts)) {
810 if (!isPowerOf2_32(NewVTSize))
    [all...]
ExecutionDepsFix.cpp 566 if (isPowerOf2_32(available)) {
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp 124 assert(isPowerOf2_32(TyWidth) && "Ty width must be power of 2");
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 566 assert(isPowerOf2_32(ByteAlign) && "alignment must be a power of 2");
764 if (isPowerOf2_32(ByteAlignment)) {
    [all...]
MachObjectWriter.cpp 233 assert(isPowerOf2_32(SD.getAlignment()) && "Invalid alignment!");
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 536 assert(isPowerOf2_32(Align) && "Invalid alignment");
611 assert(isPowerOf2_32(Align) && "Invalid CPE alignment");
    [all...]
ARMISelDAGToDAG.cpp 589 if (isPowerOf2_32(RHSC)) {
688 if (isPowerOf2_32(RHSC)) {
    [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 544 if (!isPowerOf2_32(ScalarSize))
LegalizeIntegerTypes.cpp 593 assert(isPowerOf2_32(NumElts) &&
    [all...]
LegalizeVectorTypes.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 736 isPowerOf2_32(BitWidth) && Log2_32(BitWidth) == ShAmt) {
InstCombineCalls.cpp 172 if (Len <= 8 && isPowerOf2_32((uint32_t)Len)) {
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherGen.cpp 283 if (!isPowerOf2_32(II->getValue())) { // Don't bother with single bits.
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp     [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]

Completed in 529 milliseconds

1 2