Home
last modified time | relevance | path

Searched refs:depth_count (Results 1 – 2 of 2) sorted by relevance

/external/webp/src/utils/
Dhuffman_encode.c379 int depth_count[MAX_ALLOWED_CODE_LENGTH + 1] = { 0 }; in ConvertBitDepthsToSymbols() local
386 ++depth_count[code_length]; in ConvertBitDepthsToSymbols()
388 depth_count[0] = 0; // ignore unused symbol in ConvertBitDepthsToSymbols()
393 code = (code + depth_count[i - 1]) << 1; in ConvertBitDepthsToSymbols()
/external/opencv3/3rdparty/libwebp/utils/
Dhuffman_encode.c400 int depth_count[MAX_ALLOWED_CODE_LENGTH + 1] = { 0 }; in ConvertBitDepthsToSymbols() local
407 ++depth_count[code_length]; in ConvertBitDepthsToSymbols()
409 depth_count[0] = 0; // ignore unused symbol in ConvertBitDepthsToSymbols()
414 code = (code + depth_count[i - 1]) << 1; in ConvertBitDepthsToSymbols()