Home
last modified time | relevance | path

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

/third_party/rust/crates/unicode-width/scripts/
Dunicode.py62 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/
DBitVector.h47 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/
DIceBitVector.h276 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/
DSmallBitVector.h68 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);
DSparseBitVector.h152 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()
DBitVector.h91 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/
DCommandLine.h1527 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/
DCommandLine.h1723 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/
DSelectionDAG.cpp9533 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/
DBitcodeReader.cpp2916 for (uint64_t BitPos : DeferredMetadataInfo) { in materializeMetadata() local
2918 if (Error JumpFailed = Stream.JumpToBit(BitPos)) in materializeMetadata()