HomeSort by relevance Sort by last modified time
    Searched refs:max_symbol (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/libwebp/utils/
huffman.h 84 // and symbols. Verifies that all symbols added are smaller than max_symbol.
89 const int* const symbols, int max_symbol,
huffman.c 256 const int max_symbol = code_lengths_size; local
257 if (root_symbol < 0 || root_symbol >= max_symbol) {
291 const int* const symbols, int max_symbol,
306 if (symbols[i] < 0 || symbols[i] >= max_symbol) {
  /external/webp/src/utils/
huffman.h 84 // and symbols. Verifies that all symbols added are smaller than max_symbol.
89 const int* const symbols, int max_symbol,
huffman.c 256 const int max_symbol = code_lengths_size; local
257 if (root_symbol < 0 || root_symbol >= max_symbol) {
291 const int* const symbols, int max_symbol,
306 if (symbols[i] < 0 || symbols[i] >= max_symbol) {
  /external/chromium_org/third_party/libwebp/dec/
vp8l.c 187 int max_symbol; local
200 max_symbol = 2 + VP8LReadBits(br, length_nbits);
201 if (max_symbol > num_symbols) {
206 max_symbol = num_symbols;
212 if (max_symbol-- == 0) break;
    [all...]
  /external/webp/src/dec/
vp8l.c 187 int max_symbol; local
200 max_symbol = 2 + VP8LReadBits(br, length_nbits);
201 if (max_symbol > num_symbols) {
206 max_symbol = num_symbols;
212 if (max_symbol-- == 0) break;
    [all...]

Completed in 321 milliseconds