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

  /external/opencv3/3rdparty/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/opencv3/3rdparty/libwebp/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...]
  /external/webp/src/dec/
vp8l.c 253 int max_symbol; local
265 max_symbol = 2 + VP8LReadBits(br, length_nbits);
266 if (max_symbol > num_symbols) {
270 max_symbol = num_symbols;
277 if (max_symbol-- == 0) break;
    [all...]

Completed in 496 milliseconds