OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bitsleft
(Results
1 - 11
of
11
) sorted by null
/external/deqp/framework/common/
tcuFormatUtil.hpp
98
deUint64
bitsLeft
= m_value;
101
if (curDesc->bit &
bitsLeft
)
103
if (
bitsLeft
!= m_value)
106
bitsLeft
^= curDesc->bit;
110
if (
bitsLeft
!= 0)
112
if (
bitsLeft
!= m_value)
114
stream << Hex<BitfieldSize/4>(
bitsLeft
);
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitstreamReader.h
289
unsigned
BitsLeft
= NumBits-BitsInCurWord;
291
// Be careful here,
BitsLeft
is in the range [1..32] inclusive.
292
R |= (CurWord & (~0U >> (32-
BitsLeft
))) << BitsInCurWord;
294
//
BitsLeft
bits have just been used up from CurWord.
295
if (
BitsLeft
!= 32)
296
CurWord >>=
BitsLeft
;
299
BitsInCurWord = 32-
BitsLeft
;
/external/llvm/utils/TableGen/
AsmWriterEmitter.cpp
316
unsigned
BitsLeft
= OpcodeInfoBits-AsmStrBits;
335
if (NumBits >
BitsLeft
) {
346
(uint64_t)i << (OpcodeInfoBits-
BitsLeft
);
357
BitsLeft
-= NumBits;
369
unsigned BytesNeeded = ((OpcodeInfoBits -
BitsLeft
) + 7) / 8;
374
BitsOS << " uint" << ((
BitsLeft
< (OpcodeInfoBits - 32)) ? 64 : 32)
392
if (
BitsLeft
< (OpcodeInfoBits - 32))
411
BitsLeft
= OpcodeInfoBits-AsmStrBits;
418
assert(NumBits <=
BitsLeft
&& "consistency error");
427
<< (OpcodeInfoBits-
BitsLeft
) << ") &
[
all
...]
/external/llvm/include/llvm/Bitcode/
BitstreamReader.h
282
unsigned
BitsLeft
= NumBits - BitsInCurWord;
287
if (
BitsLeft
> BitsInCurWord)
290
word_t R2 = CurWord & (~word_t(0) >> (BitsInWord -
BitsLeft
));
293
CurWord >>= (
BitsLeft
& Mask);
295
BitsInCurWord -=
BitsLeft
;
297
R |= R2 << (NumBits -
BitsLeft
);
/external/swiftshader/third_party/LLVM/utils/TableGen/
AsmWriterEmitter.cpp
317
unsigned
BitsLeft
= 32-AsmStrBits;
336
if (NumBits >
BitsLeft
) {
343
BitsLeft
-= NumBits;
346
OpcodeInfo[i] |= InstIdxs[i] << (
BitsLeft
+AsmStrBits);
388
BitsLeft
= 32-AsmStrBits;
395
assert(NumBits <=
BitsLeft
&& "consistency error");
398
BitsLeft
-= NumBits;
405
O << " if ((Bits >> " << (
BitsLeft
+AsmStrBits) << ") & "
415
O << " switch ((Bits >> " << (
BitsLeft
+AsmStrBits) << ") & "
[
all
...]
/external/dng_sdk/source/
dng_lossless_jpeg.cpp
400
int32
bitsLeft
; // # of unused bits in it
515
,
bitsLeft
(0)
1274
bitsLeft
= 0;
1334
fStream->SetReadPosition (fStream->Position () -
bitsLeft
/ 8);
1336
bitsLeft
= 0;
1478
while (
bitsLeft
< kMinGetBits)
1491
bitsLeft
+= 32;
1501
while (
bitsLeft
< kMinGetBits)
1525
if (
bitsLeft
>= nbits)
1541
bitsLeft
+= 8
[
all
...]
/external/skia/src/core/
SkBlitter.cpp
161
int
bitsLeft
= cx - ((cx - maskLeft) & 7);
163
// Everything is relative to the
bitsLeft
.
164
int leftEdge = cx -
bitsLeft
;
166
int rightEdge = clip.fRight -
bitsLeft
;
184
bits_to_runs(this,
bitsLeft
, cy, bits, leftMask, rowBytes, rightMask);
[
all
...]
/external/sonivox/arm-wt-22k/lib_src/
eas_ota.c
992
EAS_I32
bitsLeft
;
998
bitsLeft
= pData->current.bitCount - numBits;
1001
if (
bitsLeft
< 0)
1006
value = pData->current.dataByte << -
bitsLeft
;
1011
bitsLeft
+= 8;
1015
if (
bitsLeft
> 0)
1017
value |= pData->current.dataByte >>
bitsLeft
;
1018
pData->current.bitCount = (EAS_U8)
bitsLeft
;
1019
pData->current.dataByte = pData->current.dataByte & (0xff >> (8 -
bitsLeft
));
[
all
...]
/external/libavc/encoder/
ih264e_bitstream.c
183
/* 5. update
bitsleft
in current word and stream buffer offset */
/packages/apps/TV/libs/
exoplayer.jar
/external/zxing/core/
core.jar
Completed in 387 milliseconds