OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:codes_to_store
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/brotli/src/brotli/enc/
encode.cc
178
int
codes_to_store
= kCodeLengthCodes;
local
179
for (;
codes_to_store
> 0; --
codes_to_store
) {
180
if (code_length_bitdepth[kStorageOrder[
codes_to_store
- 1]] != 0) {
185
for (int i = 0; i <
codes_to_store
; ++i) {
191
codes_to_store
= kCodeLengthCodes;
202
for (int i = skip_some; i <
codes_to_store
; ++i) {
[
all
...]
/external/chromium_org/third_party/libwebp/enc/
vp8l.c
268
int
codes_to_store
= CODE_LENGTH_CODES;
local
269
for (;
codes_to_store
> 4; --
codes_to_store
) {
270
if (code_length_bitdepth[kStorageOrder[
codes_to_store
- 1]] != 0) {
274
VP8LWriteBits(bw, 4,
codes_to_store
- 4);
275
for (i = 0; i <
codes_to_store
; ++i) {
[
all
...]
/external/webp/src/enc/
vp8l.c
268
int
codes_to_store
= CODE_LENGTH_CODES;
local
269
for (;
codes_to_store
> 4; --
codes_to_store
) {
270
if (code_length_bitdepth[kStorageOrder[
codes_to_store
- 1]] != 0) {
274
VP8LWriteBits(bw, 4,
codes_to_store
- 4);
275
for (i = 0; i <
codes_to_store
; ++i) {
[
all
...]
Completed in 740 milliseconds