Searched refs:max_symbol (Results 1 – 6 of 6) sorted by relevance
/external/webp/src/utils/ |
D | huffman.c | 169 const int max_symbol = code_lengths_size; in HuffmanTreeBuildImplicit() local 170 if (root_symbol < 0 || root_symbol >= max_symbol) { in HuffmanTreeBuildImplicit() 207 const int* const symbols, int max_symbol, in HuffmanTreeBuildExplicit() argument 223 if (symbols[i] < 0 || symbols[i] >= max_symbol) { in HuffmanTreeBuildExplicit()
|
D | huffman.h | 66 const int* const symbols, int max_symbol,
|
/external/chromium_org/third_party/libwebp/utils/ |
D | huffman.c | 169 const int max_symbol = code_lengths_size; in HuffmanTreeBuildImplicit() local 170 if (root_symbol < 0 || root_symbol >= max_symbol) { in HuffmanTreeBuildImplicit() 207 const int* const symbols, int max_symbol, in HuffmanTreeBuildExplicit() argument 223 if (symbols[i] < 0 || symbols[i] >= max_symbol) { in HuffmanTreeBuildExplicit()
|
D | huffman.h | 66 const int* const symbols, int max_symbol,
|
/external/webp/src/dec/ |
D | vp8l.c | 176 int max_symbol; in ReadHuffmanCodeLengths() local 188 max_symbol = 2 + VP8LReadBits(br, length_nbits); in ReadHuffmanCodeLengths() 189 if (max_symbol > num_symbols) { in ReadHuffmanCodeLengths() 194 max_symbol = num_symbols; in ReadHuffmanCodeLengths() 200 if (max_symbol-- == 0) break; in ReadHuffmanCodeLengths()
|
/external/chromium_org/third_party/libwebp/dec/ |
D | vp8l.c | 177 int max_symbol; in ReadHuffmanCodeLengths() local 189 max_symbol = 2 + VP8LReadBits(br, length_nbits); in ReadHuffmanCodeLengths() 190 if (max_symbol > num_symbols) { in ReadHuffmanCodeLengths() 195 max_symbol = num_symbols; in ReadHuffmanCodeLengths() 201 if (max_symbol-- == 0) break; in ReadHuffmanCodeLengths()
|