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

/freebsd-10-stable/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;
179 unsigned BitPos = Prev % BITWORD_SIZE; local
182 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-stable/contrib/llvm/include/llvm/Support/
H A DCommandLine.h1456 unsigned BitPos = reinterpret_cast<unsigned>(V); local
1457 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1459 return 1 << BitPos;
1497 unsigned BitPos = (unsigned)V;
1498 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1500 return 1 << BitPos;
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6489 unsigned BitPos = j * EltBitSize; local
6492 SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize);
6495 zextOrTrunc(sz) << BitPos;
6497 SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos;

Completed in 88 milliseconds