OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CurBit
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/Bitcode/
BitstreamWriter.h
27
///
CurBit
- Always between 0 and 31 inclusive, specifies the next bit to use.
28
unsigned
CurBit
;
30
/// CurValue - The current value. Only bits <
CurBit
are valid.
64
: Out(O),
CurBit
(0), CurValue(0), CurCodeSize(2) {}
67
assert(
CurBit
== 0 && "Unflused data remaining");
84
uint64_t GetCurrentBitNo() const { return Out.size() * 8 +
CurBit
; }
93
CurValue |= Val <<
CurBit
;
94
if (
CurBit
+ NumBits < 32) {
95
CurBit
+= NumBits;
106
if (
CurBit
)
[
all
...]
/external/llvm/utils/TableGen/
Record.cpp
431
Init *
CurBit
= getBit(i);
434
B =
CurBit
;
435
CurBit
=
CurBit
->resolveReferences(R, RV);
436
Changed |= B !=
CurBit
;
437
} while (B !=
CurBit
);
438
New->setBit(i,
CurBit
);
[
all
...]
/external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp
[
all
...]
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp
[
all
...]
Completed in 1627 milliseconds