OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CurBit
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
BitstreamWriter.h
41
///
CurBit
- Always between 0 and 31 inclusive, specifies the next bit to use.
42
unsigned
CurBit
;
44
/// CurValue - The current value. Only bits <
CurBit
are valid.
119
: Out(O), FS(FS), FlushThreshold(FlushThreshold << 20),
CurBit
(0),
123
assert(
CurBit
== 0 && "Unflushed data remaining");
128
uint64_t GetCurrentBitNo() const { return GetBufferOffset() * 8 +
CurBit
; }
205
CurValue |= Val <<
CurBit
;
206
if (
CurBit
+ NumBits < 32) {
207
CurBit
+= NumBits;
214
if (
CurBit
)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/TableGen/
Record.cpp
421
Init *
CurBit
= getBit(i);
422
Init *NewBit =
CurBit
;
424
if (VarBitInit *CurBitVar = dyn_cast<VarBitInit>(
CurBit
)) {
433
NewBit =
CurBit
->resolveReferences(R)->getBit(0);
437
NewBit =
CurBit
;
439
Changed |=
CurBit
!= NewBit;
/src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp
3032
uint64_t
CurBit
= Stream.GetCurrentBitNo();
3033
DeferredMetadataInfo.push_back(
CurBit
);
3079
uint64_t
CurBit
= Stream.GetCurrentBitNo();
3081
(DeferredFunctionInfo[Fn] == 0 || DeferredFunctionInfo[Fn] ==
CurBit
) &&
3083
DeferredFunctionInfo[Fn] =
CurBit
;
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp
6194
unsigned
CurBit
= 0;
6197
//
CurBit
, if it is the same leave it as is.
6198
CurBit
^= (Val >> i) & 1U;
6200
// Encode the
CurBit
at the right place in the immediate.
6201
Imm |= (
CurBit
<< i);
Completed in 63 milliseconds
Indexes created Thu Aug 06 00:25:04 UTC 2026