OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:numBitsLeft
(Results
1 - 4
of
4
) sorted by null
/external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRCoderBitVector.cpp
82
int32_t
numBitsLeft
= numBits;
83
while (
numBitsLeft
> 0) {
84
if ((m_sizeInBits & 0x7) == 0 &&
numBitsLeft
>= 8) {
85
int32_t newByte = (value >> (
numBitsLeft
- 8)) & 0xff;
87
numBitsLeft
-= 8;
89
int32_t bit = (value >> (
numBitsLeft
- 1)) & 1;
92
--
numBitsLeft
;
/frameworks/av/media/libstagefright/foundation/
ABitReader.cpp
127
size_t ABitReader::
numBitsLeft
() const {
142
size_t numBits =
numBitsLeft
();
/frameworks/av/media/libstagefright/rtsp/
AMPEG4ElementaryAssembler.cpp
265
unsigned
numBitsLeft
= AU_headers_length;
269
if (
numBitsLeft
< mSizeLength) { break; }
272
numBitsLeft
-= mSizeLength;
275
if (
numBitsLeft
< n) { break; }
278
numBitsLeft
-= n;
287
if (
numBitsLeft
< 1) {
290
--
numBitsLeft
;
292
if (
numBitsLeft
< mCTSDeltaLength) {
296
numBitsLeft
-= mCTSDeltaLength;
301
if (
numBitsLeft
< 1)
[
all
...]
/external/zxing/core/
core.jar
Completed in 214 milliseconds