Searched refs:BitPos (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DSmallBitVector.h60 unsigned BitPos; member in class:llvm::SmallBitVector::reference
63 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {}
72 TheVector.set(BitPos);
74 TheVector.reset(BitPos);
79 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
H A DBitVector.h42 unsigned BitPos; member in class:llvm::BitVector::reference
49 BitPos = Idx % BITWORD_SIZE;
61 *WordRef |= 1L << BitPos;
63 *WordRef &= ~(1L << BitPos);
68 return ((*WordRef) & (1L << BitPos)) ? true : false;
172 unsigned BitPos = Prev % BITWORD_SIZE; local
175 Copy &= ~0UL << BitPos;
H A DSparseBitVector.h155 unsigned BitPos = Curr % BITWORD_SIZE;
161 Copy &= ~0UL << BitPos;
355 unsigned BitPos = Iter->find_first();
356 BitNumber += BitPos;
359 Bits >>= BitPos % BITWORD_SIZE;
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DCommandLine.h1455 unsigned BitPos = reinterpret_cast<unsigned>(V); local
1456 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1458 return 1 << BitPos;
1496 unsigned BitPos = (unsigned)V;
1497 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1499 return 1 << BitPos;
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6292 unsigned BitPos = j * EltBitSize; local
6295 SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize);
6298 zextOrTrunc(sz) << BitPos;
6300 SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos;

Completed in 135 milliseconds