Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clangd/index/dex/
H A DPostingList.cpp25 : Tok(Tok), Chunks(Chunks), CurrentChunk(Chunks.begin()) { in ChunkIterator()
27 DecompressedChunk = CurrentChunk->decompress(); in ChunkIterator()
92 ++CurrentChunk; in normalizeCursor()
95 DecompressedChunk = CurrentChunk->decompress(); in normalizeCursor()
101 if ((CurrentChunk != Chunks.end() - 1) && in advanceToChunk()
102 ((CurrentChunk + 1)->Head <= ID)) { in advanceToChunk()
103 CurrentChunk = in advanceToChunk()
104 std::partition_point(CurrentChunk + 1, Chunks.end(), in advanceToChunk()
106 --CurrentChunk; in advanceToChunk()
107 DecompressedChunk = CurrentChunk->decompress(); in advanceToChunk()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DTargetRegisterInfo.h1202 uint32_t CurrentChunk; variable
1209 while (!CurrentChunk) { in moveToNextID()
1216 CurrentChunk = *++Mask; in moveToNextID()
1222 unsigned Offset = countTrailingZeros(CurrentChunk); in moveToNextID()
1241 CurrentChunk >>= NumBits; in moveNBits()
1252 : NumRegClasses(TRI.getNumRegClasses()), Mask(Mask), CurrentChunk(*Mask) { in BitMaskClassIterator()