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

/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
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 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 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;
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DCommandLine.h1429 unsigned BitPos = reinterpret_cast<unsigned>(V); local
1430 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1432 return 1 << BitPos;
1470 unsigned BitPos = (unsigned)V;
1471 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1473 return 1 << BitPos;
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6168 unsigned BitPos = j * EltBitSize; local
6171 SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize);
6174 zextOrTrunc(sz) << BitPos;
6176 SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos;

Completed in 210 milliseconds