HomeSort by relevance Sort by last modified time
    Searched defs:code_lengths (Results 1 - 3 of 3) sorted by null

  /external/webp/src/utils/
huffman_encode_utils.h 32 uint8_t* code_lengths; // Code lengths of the symbols. member in struct:__anon49486
  /external/u-boot/include/jffs2/
mini_inflate.h 47 int code_lengths[19]; member in struct:bitstream
  /external/webp/src/dec/
vp8l_dec.c 250 int num_symbols, int* const code_lengths) {
284 code_lengths[symbol++] = code_len;
296 while (repeat-- > 0) code_lengths[symbol++] = length;
307 // 'code_lengths' is pre-allocated temporary buffer, used for creating Huffman
310 int* const code_lengths, HuffmanCode* const table) {
316 memset(code_lengths, 0, alphabet_size * sizeof(*code_lengths));
323 code_lengths[symbol] = 1;
327 code_lengths[symbol] = 1;
343 code_lengths);
374 int* code_lengths = NULL; local
    [all...]

Completed in 94 milliseconds