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

  /external/opencv3/3rdparty/libwebp/utils/
huffman_encode.c 184 int tree_size_orig = 0; local
189 ++tree_size_orig;
193 if (tree_size_orig == 0) { // pretty optimal already!
199 // The tree pool needs 2 * (tree_size_orig - 1) entities, and the
200 // tree needs exactly tree_size_orig entities.
201 tree = (HuffmanTree*)WebPSafeMalloc(3ULL * tree_size_orig, sizeof(*tree));
203 tree_pool = tree + tree_size_orig;
209 assert(tree_size_orig <= (1 << (tree_depth_limit - 1)));
211 int tree_size = tree_size_orig;
  /external/webp/src/utils/
huffman_encode.c 171 int tree_size_orig = 0; local
176 ++tree_size_orig;
180 if (tree_size_orig == 0) { // pretty optimal already!
184 tree_pool = tree + tree_size_orig;
190 assert(tree_size_orig <= (1 << (tree_depth_limit - 1)));
192 int tree_size = tree_size_orig;

Completed in 368 milliseconds