Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ADT/
DBitVector.h46 unsigned BitPos; variable
53 BitPos = Idx % BITWORD_SIZE; in reference()
65 *WordRef |= BitWord(1) << BitPos;
67 *WordRef &= ~(BitWord(1) << BitPos);
72 return ((*WordRef) & (BitWord(1) << BitPos)) ? true : false;
171 unsigned BitPos = Prev % BITWORD_SIZE; in find_next() local
174 Copy &= ~0UL << BitPos; in find_next()
DSmallBitVector.h64 unsigned BitPos; variable
67 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {} in reference()
78 TheVector.set(BitPos);
80 TheVector.reset(BitPos);
85 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
DSparseBitVector.h146 unsigned BitPos = Curr % BITWORD_SIZE;
152 Copy &= ~0UL << BitPos;
336 unsigned BitPos = Iter->find_first();
337 BitNumber += BitPos;
340 Bits >>= BitPos % BITWORD_SIZE;
/external/llvm/include/llvm/Support/
DCommandLine.h1389 unsigned BitPos = reinterpret_cast<unsigned>(V);
1390 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1392 return 1 << BitPos;
1425 unsigned BitPos = (unsigned)V;
1426 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1428 return 1 << BitPos;
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp6820 unsigned BitPos = j * EltBitSize; in isConstantSplat() local
6823 SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize); in isConstantSplat()
6826 zextOrTrunc(sz) << BitPos; in isConstantSplat()
6828 SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos; in isConstantSplat()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2615 for (uint64_t BitPos : DeferredMetadataInfo) { in materializeMetadata() local
2617 Stream.JumpToBit(BitPos); in materializeMetadata()