OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bufferBits
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_cavlc.c
763
u32
bufferBits
;
775
BUFFER_INIT(bufferValue,
bufferBits
);
778
BUFFER_SHOW(bufferValue,
bufferBits
, bit, 16);
783
BUFFER_FLUSH(bufferValue,
bufferBits
, LENGTH_TC(tmp));
796
BUFFER_GET(bufferValue,
bufferBits
, bit, trailingOnes);
813
BUFFER_SHOW(bufferValue,
bufferBits
, bit, 16);
817
BUFFER_FLUSH(bufferValue,
bufferBits
, levelPrefix+1);
840
BUFFER_GET(bufferValue,
bufferBits
, levelSuffix, tmp);
864
BUFFER_SHOW(bufferValue,
bufferBits
, bit,9);
869
BUFFER_FLUSH(bufferValue,
bufferBits
, LENGTH(zerosLeft))
[
all
...]
/external/dng_sdk/source/
dng_read_image.cpp
1362
uint32
bufferBits
= 0;
1367
while (
bufferBits
< bitDepth)
1372
bufferBits
+= 8;
1376
p [j] = (uint16) ((bitBuffer >> (
bufferBits
- bitDepth)) & bitMask);
1378
bufferBits
-= bitDepth;
1401
uint32
bufferBits
= 0;
1406
while (
bufferBits
< bitDepth)
1411
bufferBits
+= 8;
1415
p [j] = ((uint32) (bitBuffer >> (
bufferBits
- bitDepth))) & bitMask;
1417
bufferBits
-= bitDepth
[
all
...]
Completed in 1109 milliseconds