OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:max_symbol
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/libwebp/utils/
huffman.h
61
// and symbols. Verifies that all symbols added are smaller than
max_symbol
.
66
const int* const symbols, int
max_symbol
,
huffman.c
169
const int
max_symbol
= code_lengths_size;
local
170
if (root_symbol < 0 || root_symbol >=
max_symbol
) {
207
const int* const symbols, int
max_symbol
,
223
if (symbols[i] < 0 || symbols[i] >=
max_symbol
) {
/external/webp/src/utils/
huffman.h
61
// and symbols. Verifies that all symbols added are smaller than
max_symbol
.
66
const int* const symbols, int
max_symbol
,
huffman.c
169
const int
max_symbol
= code_lengths_size;
local
170
if (root_symbol < 0 || root_symbol >=
max_symbol
) {
207
const int* const symbols, int
max_symbol
,
223
if (symbols[i] < 0 || symbols[i] >=
max_symbol
) {
/external/chromium_org/third_party/libwebp/dec/
vp8l.c
177
int
max_symbol
;
local
189
max_symbol
= 2 + VP8LReadBits(br, length_nbits);
190
if (
max_symbol
> num_symbols) {
195
max_symbol
= num_symbols;
201
if (
max_symbol
-- == 0) break;
[
all
...]
/external/webp/src/dec/
vp8l.c
176
int
max_symbol
;
local
188
max_symbol
= 2 + VP8LReadBits(br, length_nbits);
189
if (
max_symbol
> num_symbols) {
194
max_symbol
= num_symbols;
200
if (
max_symbol
-- == 0) break;
[
all
...]
Completed in 1079 milliseconds