Searched defs:BitPos (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DBitVector.h43 unsigned BitPos; member in class:llvm::BitVector::reference
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; local
181 Copy &= ~0UL << BitPos;
H A DSmallBitVector.h61 unsigned BitPos; member in class:llvm::SmallBitVector::reference
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);
/external/llvm/include/llvm/Support/
H A DCommandLine.h1465 unsigned BitPos = reinterpret_cast<unsigned>(V); local
1466 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1468 return 1 << BitPos;
1506 unsigned BitPos = (unsigned)V;
1507 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1509 return 1 << BitPos;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6646 unsigned BitPos = j * EltBitSize; local
6649 SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize);
6652 zextOrTrunc(sz) << BitPos;
6654 SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos;

Completed in 133 milliseconds