Searched refs:BitPos (Results 1 – 10 of 10) sorted by relevance
/third_party/rust/crates/unicode-width/scripts/ |
D | unicode.py | 62 BitPos = int variable 227 def make_buckets(entries, low_bit: BitPos, cap_bit: BitPos) -> "list[Bucket]": argument 255 self, entry_groups, low_bit: BitPos, cap_bit: BitPos, offset_type: OffsetType argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | BitVector.h | 47 unsigned BitPos; variable 52 BitPos = Idx % BITWORD_SIZE; in reference() 65 *WordRef |= BitWord(1) << BitPos; 67 *WordRef &= ~(BitWord(1) << BitPos); 72 return ((*WordRef) & (BitWord(1) << BitPos)) != 0; 172 unsigned BitPos = Prev % BITWORD_SIZE; in find_next() local 175 Copy &= ~0UL << BitPos; in find_next()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceBitVector.h | 276 unsigned BitPos; variable 283 BitPos = Idx % BITWORD_SIZE; in reference() 295 *WordRef |= BitWord(1) << BitPos; 297 *WordRef &= ~(BitWord(1) << BitPos); 302 return ((*WordRef) & (BitWord(1) << BitPos)) ? true : false; 403 unsigned BitPos = Prev % BITWORD_SIZE; in find_next() local 406 Copy &= ~0UL << BitPos; in find_next()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | SmallBitVector.h | 68 unsigned BitPos; variable 71 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {} in reference() 82 TheVector.set(BitPos); 84 TheVector.reset(BitPos); 89 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
|
D | SparseBitVector.h | 152 unsigned BitPos = Curr % BITWORD_SIZE; in find_next() local 158 Copy &= ~0UL << BitPos; in find_next() 346 unsigned BitPos = Iter->find_first(); in AdvanceToFirstNonZero() local 347 BitNumber += BitPos; in AdvanceToFirstNonZero() 350 Bits >>= BitPos % BITWORD_SIZE; in AdvanceToFirstNonZero()
|
D | BitVector.h | 91 unsigned BitPos; variable 96 BitPos = Idx % BITWORD_SIZE; in reference() 109 *WordRef |= BitWord(1) << BitPos; 111 *WordRef &= ~(BitWord(1) << BitPos); 116 return ((*WordRef) & (BitWord(1) << BitPos)) != 0;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | CommandLine.h | 1527 unsigned BitPos = reinterpret_cast<unsigned>(V); 1528 assert(BitPos < sizeof(unsigned) * CHAR_BIT && 1530 return 1 << BitPos; 1563 unsigned BitPos = (unsigned)V; 1564 assert(BitPos < sizeof(unsigned) * CHAR_BIT && 1566 return 1 << BitPos;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | CommandLine.h | 1723 unsigned BitPos = reinterpret_cast<unsigned>(V); 1724 assert(BitPos < sizeof(unsigned) * CHAR_BIT && 1726 return 1 << BitPos; 1759 unsigned BitPos = (unsigned)V; 1760 assert(BitPos < sizeof(unsigned) * CHAR_BIT && 1762 return 1 << BitPos;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 9533 unsigned BitPos = j * EltWidth; in isConstantSplat() local 9536 SplatUndef.setBits(BitPos, BitPos + EltWidth); in isConstantSplat() 9538 SplatValue.insertBits(CN->getAPIntValue().zextOrTrunc(EltWidth), BitPos); in isConstantSplat() 9540 SplatValue.insertBits(CN->getValueAPF().bitcastToAPInt(), BitPos); in isConstantSplat()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 2916 for (uint64_t BitPos : DeferredMetadataInfo) { in materializeMetadata() local 2918 if (Error JumpFailed = Stream.JumpToBit(BitPos)) in materializeMetadata()
|