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

  /external/chromium_org/third_party/libwebp/utils/
huffman.c 117 int next_codes[MAX_ALLOWED_CODE_LENGTH + 1] = { 0 }; local
138 // Calculate the initial values of 'next_codes' for each code length.
139 // next_codes[code_len] denotes the code to be assigned to the next symbol
142 next_codes[0] = -1; // Unused, as code length = 0 implies code doesn't exist.
145 next_codes[code_len] = curr_code;
151 huff_codes[symbol] = next_codes[code_lengths[symbol]]++;
  /external/webp/src/utils/
huffman.c 117 int next_codes[MAX_ALLOWED_CODE_LENGTH + 1] = { 0 }; local
138 // Calculate the initial values of 'next_codes' for each code length.
139 // next_codes[code_len] denotes the code to be assigned to the next symbol
142 next_codes[0] = -1; // Unused, as code length = 0 implies code doesn't exist.
145 next_codes[code_len] = curr_code;
151 huff_codes[symbol] = next_codes[code_lengths[symbol]]++;

Completed in 32 milliseconds