Searched refs:NextBit (Results 1 – 6 of 6) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/include/llvm/Bitcode/ |
| H A D | BitcodeCommon.h | 26 using UsedWithInAlloca = Bitfield::Element<bool, AlignLower::NextBit, 1>; 27 using ExplicitType = Bitfield::Element<bool, UsedWithInAlloca::NextBit, 1>; 28 using SwiftError = Bitfield::Element<bool, ExplicitType::NextBit, 1>; 29 using AlignUpper = Bitfield::Element<unsigned, SwiftError::NextBit, 3>;
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Bitstream/ |
| H A D | BitstreamReader.h | 243 unsigned NextBit = 0; in ReadVBR() local 245 Result |= (Piece & (Mask - 1)) << NextBit; in ReadVBR() 250 NextBit += NumBits-1; in ReadVBR() 251 if (NextBit >= 32) in ReadVBR() 277 unsigned NextBit = 0; in ReadVBR64() local 279 Result |= uint64_t(Piece & (Mask - 1)) << NextBit; in ReadVBR64() 284 NextBit += NumBits-1; in ReadVBR64() 285 if (NextBit >= 64) in ReadVBR64()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | Bitfields.h | 231 static constexpr unsigned NextBit = Shift + Bits; 283 return A::NextBit == B::FirstBit && areContiguous<B, Others...>();
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 62 using UsedWithInAllocaField = BoolBitfieldElementT<AlignmentField::NextBit>; 63 using SwiftErrorField = BoolBitfieldElementT<UsedWithInAllocaField::NextBit>; 179 using AlignmentField = AlignmentBitfieldElementT<VolatileField::NextBit>; 180 using OrderingField = AtomicOrderingBitfieldElementT<AlignmentField::NextBit>; 303 using AlignmentField = AlignmentBitfieldElementT<VolatileField::NextBit>; 304 using OrderingField = AtomicOrderingBitfieldElementT<AlignmentField::NextBit>; 544 using WeakField = BoolBitfieldElementT<VolatileField::NextBit>; 546 AtomicOrderingBitfieldElementT<WeakField::NextBit>; 548 AtomicOrderingBitfieldElementT<SuccessOrderingField::NextBit>; 550 AlignmentBitfieldElementT<FailureOrderingField::NextBit>; [all …]
|
| H A D | InstrTypes.h | 1189 Bitfield::Element<CallingConv::ID, CallInstReservedField::NextBit, 10,
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | CodeGenRegisters.cpp | 1537 unsigned NextBit = 0; in computeSubRegLaneMasks() local 1543 unsigned SrcBit = NextBit; in computeSubRegLaneMasks() 1545 if (NextBit < LaneBitmask::BitWidth-1) in computeSubRegLaneMasks() 1546 ++NextBit; in computeSubRegLaneMasks()
|