HomeSort by: relevance | last modified time | path
    Searched defs:BitPos (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
BitVector.h 94 unsigned BitPos;
99 BitPos = Idx % BITWORD_SIZE;
112 *WordRef |= BitWord(1) << BitPos;
114 *WordRef &= ~(BitWord(1) << BitPos);
119 return ((*WordRef) & (BitWord(1) << BitPos)) != 0;
SmallBitVector.h 68 unsigned BitPos;
71 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {}
82 TheVector.set(BitPos);
84 TheVector.reset(BitPos);
89 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
CommandLine.h 1730 unsigned BitPos = reinterpret_cast<unsigned>(V);
1731 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1733 return 1 << BitPos;
1766 unsigned BitPos = (unsigned)V;
1767 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1769 return 1 << BitPos;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 2081 /// %bitmask = shl i32 1, %bitpos
2098 Value *&BitMask, Value *&BitPos,
2135 m_LoopInvariant(m_Shl(m_One(), m_Value(BitPos)),
2142 (BitPos = ConstantExpr::getExactLogBase2(cast<Constant>(BitMask)));
2149 (BitPos = ConstantInt::get(CurrX->getType(), Mask.logBase2()));
2201 /// %bitmask = shl i32 1, %bitpos
2221 /// %bitmask = shl i32 1, %bitpos
2229 /// %backedgetakencount = sub i32 %bitpos, %x.masked.leadingonepos
2250 Value *X, *BitMask, *BitPos, *XCurr;
2252 if (!detectShiftUntilBitTestIdiom(CurLoop, X, BitMask, BitPos, XCurr
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVISelLowering.cpp 1386 unsigned BitPos = 0, IntegerEltIdx = 0;
1389 for (unsigned I = 0; I < NumElts; I++, BitPos++) {
1399 BitPos = 0;
1404 Bits |= ((uint64_t)BitValue << BitPos);

Completed in 34 milliseconds