HomeSort by relevance Sort by last modified time
    Searched refs:CountTrailingZeros_64 (Results 1 - 14 of 14) sorted by null

  /external/llvm/include/llvm/Support/
MathExtras.h 269 /// CountTrailingZeros_64 - This function performs the platform optimal form
273 inline unsigned CountTrailingZeros_64(uint64_t Value) {
293 return CountTrailingZeros_64(~Value);
  /external/llvm/include/llvm/ADT/
BitVector.h 150 return i * BITWORD_SIZE + CountTrailingZeros_64(Bits[i]);
173 return WordPos * BITWORD_SIZE + CountTrailingZeros_64(Copy);
183 return i * BITWORD_SIZE + CountTrailingZeros_64(Bits[i]);
SmallBitVector.h 214 return CountTrailingZeros_64(Bits);
232 return CountTrailingZeros_64(Bits);
SparseBitVector.h 142 return i * BITWORD_SIZE + CountTrailingZeros_64(Bits[i]);
167 return WordPos * BITWORD_SIZE + CountTrailingZeros_64(Copy);
177 return i * BITWORD_SIZE + CountTrailingZeros_64(Bits[i]);
  /external/llvm/lib/Target/Mips/
MipsAnalyzeImmediate.cpp 43 unsigned Shamt = CountTrailingZeros_64(Imm);
MipsISelLowering.cpp 47 Pos = CountTrailingZeros_64(I);
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 625 CountTrailingZeros_64(Offset));
635 unsigned(CountTrailingZeros_64(TypeSize) +
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 738 return std::min(unsigned(CountTrailingZeros_64(VAL)), BitWidth);
744 Count += CountTrailingZeros_64(pVal[i]);
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 753 Shift = CountTrailingZeros_64(Imm);
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 864 unsigned MaskTZ = CountTrailingZeros_64(Mask);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 4027 milliseconds