Home
last modified time | relevance | path

Searched refs:code_length (Results 1 – 5 of 5) sorted by relevance

/external/webp/src/utils/
Dhuffman_encode.c405 const int code_length = tree->code_lengths[i]; in ConvertBitDepthsToSymbols() local
406 assert(code_length <= MAX_ALLOWED_CODE_LENGTH); in ConvertBitDepthsToSymbols()
407 ++depth_count[code_length]; in ConvertBitDepthsToSymbols()
419 const int code_length = tree->code_lengths[i]; in ConvertBitDepthsToSymbols() local
420 tree->codes[i] = ReverseBits(code_length, next_code[code_length]++); in ConvertBitDepthsToSymbols()
Dhuffman.c121 int symbol, int code, int code_length) { in TreeAddSymbol() argument
124 while (code_length-- > 0) { in TreeAddSymbol()
134 node += node->children_ + ((code >> code_length) & 1); in TreeAddSymbol()
/external/chromium_org/third_party/libwebp/utils/
Dhuffman_encode.c405 const int code_length = tree->code_lengths[i]; in ConvertBitDepthsToSymbols() local
406 assert(code_length <= MAX_ALLOWED_CODE_LENGTH); in ConvertBitDepthsToSymbols()
407 ++depth_count[code_length]; in ConvertBitDepthsToSymbols()
419 const int code_length = tree->code_lengths[i]; in ConvertBitDepthsToSymbols() local
420 tree->codes[i] = ReverseBits(code_length, next_code[code_length]++); in ConvertBitDepthsToSymbols()
Dhuffman.c121 int symbol, int code, int code_length) { in TreeAddSymbol() argument
124 while (code_length-- > 0) { in TreeAddSymbol()
134 node += node->children_ + ((code >> code_length) & 1); in TreeAddSymbol()
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
DCodeAttribute_info.java217 final long code_length = bytes.readU4 (); in CodeAttribute_info() local
219 m_code = new byte [(int) code_length]; in CodeAttribute_info()
221 m_codeSize = (int) code_length; in CodeAttribute_info()