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

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

Completed in 60 milliseconds