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

  /external/llvm/include/llvm/ADT/
SmallBitVector.h 61 unsigned BitPos;
64 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {}
73 TheVector.set(BitPos);
75 TheVector.reset(BitPos);
80 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
BitVector.h 43 unsigned BitPos;
50 BitPos = Idx % BITWORD_SIZE;
62 *WordRef |= BitWord(1) << BitPos;
64 *WordRef &= ~(BitWord(1) << BitPos);
69 return ((*WordRef) & (BitWord(1) << BitPos)) ? true : false;
178 unsigned BitPos = Prev % BITWORD_SIZE;
181 Copy &= ~0UL << BitPos;
SparseBitVector.h 156 unsigned BitPos = Curr % BITWORD_SIZE;
162 Copy &= ~0UL << BitPos;
356 unsigned BitPos = Iter->find_first();
357 BitNumber += BitPos;
360 Bits >>= BitPos % BITWORD_SIZE;
  /external/llvm/include/llvm/Support/
CommandLine.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 202 milliseconds