OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CurAbbrevs
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
BitstreamWriter.h
55
///
CurAbbrevs
- Abbrevs installed at in this block.
56
std::vector<std::shared_ptr<BitCodeAbbrev>>
CurAbbrevs
;
124
assert(BlockScope.empty() &&
CurAbbrevs
.empty() && "Block imbalance");
301
BlockScope.back().PrevAbbrevs.swap(
CurAbbrevs
);
306
append_range(
CurAbbrevs
, Info->Abbrevs);
327
CurAbbrevs
= std::move(B.PrevAbbrevs);
382
assert(AbbrevNo <
CurAbbrevs
.size() && "Invalid abbrev #!");
383
const BitCodeAbbrev *Abbv =
CurAbbrevs
[AbbrevNo].get();
573
CurAbbrevs
.push_back(std::move(Abbv));
574
return static_cast<unsigned>(
CurAbbrevs
.size())-1
[
all
...]
BitstreamReader.h
346
std::vector<std::shared_ptr<BitCodeAbbrev>>
CurAbbrevs
;
515
CurAbbrevs
= std::move(BlockScope.back().PrevAbbrevs);
527
if (AbbrevNo >=
CurAbbrevs
.size())
529
return
CurAbbrevs
[AbbrevNo].get();
/src/external/apache2/llvm/dist/llvm/lib/Bitstream/Reader/
BitstreamReader.cpp
24
BlockScope.back().PrevAbbrevs.swap(
CurAbbrevs
);
26
// Add the abbrevs specific to this block to the
CurAbbrevs
list.
30
llvm::append_range(
CurAbbrevs
, Info->Abbrevs);
398
CurAbbrevs
.push_back(std::move(Abbv));
438
// ReadAbbrevRecord installs the abbrev in
CurAbbrevs
. Move it to the
440
CurBlockInfo->Abbrevs.push_back(std::move(
CurAbbrevs
.back()));
441
CurAbbrevs
.pop_back();
Completed in 52 milliseconds
Indexes created Thu Sep 24 00:25:51 UTC 2026