Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/include/llvm/ADT/
H A DBitVector.h43 unsigned BitPos; variable
50 BitPos = Idx % BITWORD_SIZE; in reference()
62 *WordRef |= BitWord(1) << BitPos;
64 *WordRef &= ~(BitWord(1) << BitPos);
69 return ((*WordRef) & (BitWord(1) << BitPos)) ? true : false;
178 unsigned BitPos = Prev % BITWORD_SIZE; in find_next() local
181 Copy &= ~0UL << BitPos; in find_next()
H A DSmallBitVector.h61 unsigned BitPos; variable
64 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {} in reference()
73 TheVector.set(BitPos);
75 TheVector.reset(BitPos);
80 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
H A DSparseBitVector.h156 unsigned BitPos = Curr % BITWORD_SIZE;
162 Copy &= ~0UL << BitPos;
356 unsigned BitPos = Iter->find_first();
357 BitNumber += BitPos;
360 Bits >>= BitPos % BITWORD_SIZE;
/minix3/external/bsd/llvm/dist/llvm/include/llvm/Support/
H A DCommandLine.h1491 unsigned BitPos = reinterpret_cast<unsigned>(V);
1492 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1494 return 1 << BitPos;
1527 unsigned BitPos = (unsigned)V;
1528 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1530 return 1 << BitPos;
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6715 unsigned BitPos = j * EltBitSize; in isConstantSplat() local
6718 SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize); in isConstantSplat()
6721 zextOrTrunc(sz) << BitPos; in isConstantSplat()
6723 SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos; in isConstantSplat()