OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CurCodeSize
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Bitcode/
BitstreamReader.h
186
//
CurCodeSize
- This is the declared size of code values used for the current
188
unsigned
CurCodeSize
;
214
CurCodeSize
= 2;
224
CurCodeSize
= 2;
256
unsigned getAbbrevIDWidth() const { return
CurCodeSize
; }
459
return Read(
CurCodeSize
);
510
CurCodeSize
= BlockScope.back().PrevCodeSize;
BitstreamWriter.h
34
///
CurCodeSize
- This is the declared size of code values used for the
36
unsigned
CurCodeSize
;
97
: Out(O), CurBit(0), CurValue(0),
CurCodeSize
(2) {}
189
Emit(Val,
CurCodeSize
);
219
unsigned OldCodeSize =
CurCodeSize
;
224
CurCodeSize
= CodeLen;
265
CurCodeSize
= B.PrevCodeSize;
/external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp
25
CurCodeSize
= RHS.
CurCodeSize
;
60
BlockScope.push_back(Block(
CurCodeSize
));
73
CurCodeSize
= ReadVBR(bitc::CodeLenWidth);
79
if (
CurCodeSize
== 0 || AtEndOfStream())
Completed in 24 milliseconds