OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tree_size_orig
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/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
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
;
Completed in 23 milliseconds