Home
last modified time | relevance | path

Searched refs:NextBit (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h228 unsigned NextBit = 0; in ReadVBR() local
230 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit; in ReadVBR()
235 NextBit += NumBits-1; in ReadVBR()
248 unsigned NextBit = 0; in ReadVBR64() local
250 Result |= uint64_t(Piece & ((1U << (NumBits-1))-1)) << NextBit; in ReadVBR64()
255 NextBit += NumBits-1; in ReadVBR64()
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp1459 unsigned NextBit = 0; in computeSubRegLaneMasks() local
1465 unsigned SrcBit = NextBit; in computeSubRegLaneMasks()
1467 if (NextBit < LaneBitmask::BitWidth-1) in computeSubRegLaneMasks()
1468 ++NextBit; in computeSubRegLaneMasks()