OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BitsLeft
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Bitcode/
BitstreamReader.h
381
unsigned
BitsLeft
= NumBits-BitsInCurWord;
383
// Be careful here,
BitsLeft
is in the range [1..32]/[1..64] inclusive.
384
R |= uint32_t((CurWord & (word_t(~0ULL) >> (sizeof(word_t)*8-
BitsLeft
)))
387
//
BitsLeft
bits have just been used up from CurWord.
BitsLeft
is in the
389
if (
BitsLeft
!= sizeof(word_t)*8)
390
CurWord >>=
BitsLeft
;
393
BitsInCurWord = sizeof(word_t)*8-
BitsLeft
;
/external/llvm/utils/TableGen/
AsmWriterEmitter.cpp
367
unsigned
BitsLeft
= 64-AsmStrBits;
386
if (NumBits >
BitsLeft
) {
395
OpcodeInfo[i] |= (uint64_t)InstIdxs[i] << (64-
BitsLeft
);
397
BitsLeft
-= NumBits;
427
if (
BitsLeft
< 32) {
431
<< ((
BitsLeft
< 16) ? "32" : (
BitsLeft
< 24) ? "16" : "8")
450
if (
BitsLeft
< 32) {
464
BitsLeft
= 64-AsmStrBits;
471
assert(NumBits <=
BitsLeft
&& "consistency error")
[
all
...]
Completed in 38 milliseconds