Home
last modified time | relevance | path

Searched refs:CurBit (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamWriter.h43 unsigned CurBit; variable
120 : Out(O), FS(FS), FlushThreshold(FlushThreshold << 20), CurBit(0), in Out()
124 assert(CurBit == 0 && "Unflushed data remaining"); in ~BitstreamWriter()
206 CurValue |= Val << CurBit; in Emit()
207 if (CurBit + NumBits < 32) { in Emit()
208 CurBit += NumBits; in Emit()
215 if (CurBit) in Emit()
216 CurValue = Val >> (32-CurBit); in Emit()
219 CurBit = (CurBit+NumBits) & 31; in Emit()
223 if (CurBit) { in FlushToWord()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp421 Init *CurBit = getBit(i); in resolveReferences() local
422 Init *NewBit = CurBit; in resolveReferences()
424 if (VarBitInit *CurBitVar = dyn_cast<VarBitInit>(CurBit)) { in resolveReferences()
433 NewBit = CurBit->resolveReferences(R)->getBit(0); in resolveReferences()
437 NewBit = CurBit; in resolveReferences()
439 Changed |= CurBit != NewBit; in resolveReferences()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2999 uint64_t CurBit = Stream.GetCurrentBitNo(); in rememberAndSkipMetadata() local
3000 DeferredMetadataInfo.push_back(CurBit); in rememberAndSkipMetadata()
3046 uint64_t CurBit = Stream.GetCurrentBitNo(); in rememberAndSkipFunctionBody() local
3048 (DeferredFunctionInfo[Fn] == 0 || DeferredFunctionInfo[Fn] == CurBit) && in rememberAndSkipFunctionBody()
3050 DeferredFunctionInfo[Fn] = CurBit; in rememberAndSkipFunctionBody()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp6194 unsigned CurBit = 0; in DecodeVPTMaskOperand() local
6198 CurBit ^= (Val >> i) & 1U; in DecodeVPTMaskOperand()
6201 Imm |= (CurBit << i); in DecodeVPTMaskOperand()