Home
last modified time | relevance | path

Searched refs:BitPos (Results 1 – 7 of 7) 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.h145 unsigned BitPos = Curr % BITWORD_SIZE;
151 Copy &= ~0UL << BitPos;
337 unsigned BitPos = Iter->find_first();
338 BitNumber += BitPos;
341 Bits >>= BitPos % BITWORD_SIZE;
/external/llvm/include/llvm/Support/
DCommandLine.h1446 unsigned BitPos = reinterpret_cast<unsigned>(V);
1447 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1449 return 1 << BitPos;
1482 unsigned BitPos = (unsigned)V;
1483 assert(BitPos < sizeof(unsigned) * CHAR_BIT &&
1485 return 1 << BitPos;
/external/llvm/lib/Target/Hexagon/
DHexagonISelDAGToDAG.cpp1181 unsigned BitPos = 0; in SelectBitOp() local
1188 BitPos = countTrailingZeros(uint64_t(Val)); in SelectBitOp()
1191 BitPos = 31; in SelectBitOp()
1214 SDValue SDVal = CurDAG->getTargetConstant(BitPos, dl, MVT::i32); in SelectBitOp()
1243 if (SubValueVT != MVT::f32 && BitPos < 32) { in SelectBitOp()
1252 SDVal = CurDAG->getTargetConstant(BitPos-32, dl, MVT::i32); in SelectBitOp()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp7189 unsigned BitPos = j * EltBitSize; in isConstantSplat() local
7192 SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize); in isConstantSplat()
7195 zextOrTrunc(sz) << BitPos; in isConstantSplat()
7197 SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos; in isConstantSplat()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp3054 for (uint64_t BitPos : DeferredMetadataInfo) { in materializeMetadata() local
3056 Stream.JumpToBit(BitPos); in materializeMetadata()