Home
last modified time | relevance | path

Searched refs:max_symbol (Results 1 – 3 of 3) sorted by relevance

/external/webp/src/utils/
Dhuffman.c167 const int max_symbol = code_lengths_size; in HuffmanTreeBuildImplicit() local
168 if (root_symbol < 0 || root_symbol >= max_symbol) { in HuffmanTreeBuildImplicit()
205 const int* const symbols, int max_symbol, in HuffmanTreeBuildExplicit() argument
221 if (symbols[i] < 0 || symbols[i] >= max_symbol) { in HuffmanTreeBuildExplicit()
Dhuffman.h64 const int* const symbols, int max_symbol,
/external/webp/src/dec/
Dvp8l.c174 int max_symbol; in ReadHuffmanCodeLengths() local
186 max_symbol = 2 + VP8LReadBits(br, length_nbits); in ReadHuffmanCodeLengths()
187 if (max_symbol > num_symbols) { in ReadHuffmanCodeLengths()
192 max_symbol = num_symbols; in ReadHuffmanCodeLengths()
198 if (max_symbol-- == 0) break; in ReadHuffmanCodeLengths()