HomeSort by: relevance | last modified time | path
    Searched refs:TrailingZeros (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
PaddingChecker.cpp 270 unsigned TrailingZeros =
275 long long CurAlignmentBits = 1ull << (std::min)(TrailingZeros, 62u);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Value.cpp 933 size_t TrailingZeros = CstInt->getValue().countTrailingZeros();
936 return Align(TrailingZeros < Value::MaxAlignmentExponent
937 ? uint64_t(1) << TrailingZeros
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APInt.h 1702 unsigned TrailingZeros = llvm::countTrailingZeros(U.VAL);
1703 return (TrailingZeros > BitWidth ? BitWidth : TrailingZeros);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 5453 unsigned TrailingZeros = countTrailingZeros(Mask);
5454 SDValue Imm = CurDAG->getTargetConstant(TrailingZeros, dl, MVT::i64);

Completed in 48 milliseconds