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

1 2

  /external/llvm/unittests/Support/
MathExtrasTest.cpp 120 TEST(MathExtras, isPowerOf2_32) {
121 EXPECT_TRUE(isPowerOf2_32(1 << 6));
122 EXPECT_TRUE(isPowerOf2_32(1 << 12));
123 EXPECT_FALSE(isPowerOf2_32((1 << 19) + 3));
124 EXPECT_FALSE(isPowerOf2_32(0xABCDEF0));
  /external/llvm/lib/Analysis/
CostModel.cpp 260 if (!isPowerOf2_32(NumVecElems))
324 if (!isPowerOf2_32(NumVecElems))
  /external/llvm/lib/Transforms/Scalar/
LoadCombine.cpp 176 while (TotalSize != 0 && !isPowerOf2_32(TotalSize))
  /external/llvm/lib/IR/
Attributes.cpp 79 assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
86 assert(isPowerOf2_32(Align) && "Alignment must be a power of two.");
    [all...]
Type.cpp 324 return (BitWidth > 7) && isPowerOf2_32(BitWidth);
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 132 assert(isPowerOf2_32(TyWidth) && "Ty width must be power of 2");
PPCISelDAGToDAG.cpp     [all...]
  /external/llvm/include/llvm/Support/
MathExtras.h 361 /// isPowerOf2_32 - This function returns true if the argument is a power of
362 /// two > 0. Ex. isPowerOf2_32(0x00100000U) == true (32 bit edition.)
363 inline bool isPowerOf2_32(uint32_t Value) {
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp     [all...]
ExecutionDepsFix.cpp 635 if (isPowerOf2_32(available)) {
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 288 assert(isPowerOf2_32(TyWidth) && "Ty width must be power of 2");
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 534 assert(isPowerOf2_32(ByteAlign) && "alignment must be a power of 2");
754 if (isPowerOf2_32(ByteAlignment)) {
    [all...]
MachObjectWriter.cpp 236 assert(isPowerOf2_32(SD.getAlignment()) && "Invalid alignment!");
    [all...]
  /external/llvm/lib/Target/Mips/
MipsConstantIslandPass.cpp 570 assert(isPowerOf2_32(Align) && "Invalid alignment");
646 assert(isPowerOf2_32(Align) && "Invalid CPE alignment");
    [all...]
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp 136 assert(isPowerOf2_32(TyWidth) && "Ty width must be power of 2");
796 if (!isPowerOf2_32(NumElem)) {
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 537 assert(isPowerOf2_32(Align) && "Invalid alignment");
612 assert(isPowerOf2_32(Align) && "Invalid CPE alignment");
    [all...]
ARMISelDAGToDAG.cpp 583 if (isPowerOf2_32(RHSC)) {
682 if (isPowerOf2_32(RHSC)) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 753 isPowerOf2_32(BitWidth) && Log2_32(BitWidth) == ShAmt) {
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherGen.cpp 327 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/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 609 if (!isPowerOf2_32(ScalarSize))
    [all...]
LegalizeIntegerTypes.cpp 632 assert(isPowerOf2_32(NumElts) &&
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
SLPVectorizer.cpp     [all...]

Completed in 386 milliseconds

1 2