OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebPSafeMalloc
(Results
1 - 14
of
14
) sorted by null
/external/webp/src/utils/
utils.c
31
void*
WebPSafeMalloc
(uint64_t nmemb, size_t size) {
utils.h
36
void*
WebPSafeMalloc
(uint64_t nmemb, size_t size);
huffman.c
53
tree->root_ = (HuffmanTreeNode*)
WebPSafeMalloc
((uint64_t)tree->max_nodes_,
178
(int*)
WebPSafeMalloc
((uint64_t)code_lengths_size, sizeof(*codes));
huffman_encode.c
199
tree = (HuffmanTree*)
WebPSafeMalloc
(3ULL * tree_size_orig, sizeof(*tree));
/external/webp/src/dec/
buffer.c
104
output = (uint8_t*)
WebPSafeMalloc
(total_size, sizeof(*output));
vp8l.c
799
(uint32_t*)
WebPSafeMalloc
((uint64_t)final_num_colors,
[
all
...]
frame.c
437
dec->mem_ =
WebPSafeMalloc
(needed, sizeof(uint8_t));
idec.c
150
(uint8_t*)
WebPSafeMalloc
(extra_size, sizeof(*new_buf));
/external/webp/src/enc/
backward_references.c
98
refs->refs = (PixOrCopy*)
WebPSafeMalloc
((uint64_t)max_size,
116
p->chain_ = (int*)
WebPSafeMalloc
((uint64_t)size, sizeof(*p->chain_));
483
(float*)
WebPSafeMalloc
((uint64_t)pix_count, sizeof(*cost));
707
(uint32_t*)
WebPSafeMalloc
((uint64_t)dist_array_size, sizeof(*dist_array));
picture.c
91
mem = (uint8_t*)
WebPSafeMalloc
(total_size, sizeof(*mem));
127
memory =
WebPSafeMalloc
(argb_size, sizeof(*picture->argb));
421
work = (int32_t*)
WebPSafeMalloc
(2ULL * width, sizeof(*work));
454
work = (int32_t*)
WebPSafeMalloc
(2ULL * width * 4, sizeof(*work));
495
new_mem = (uint8_t*)
WebPSafeMalloc
(next_max_size, 1);
504
// down-cast is ok, thanks to
WebPSafeMalloc
[
all
...]
vp8l.c
313
(HuffmanTreeToken*)
WebPSafeMalloc
((uint64_t)max_tokens, sizeof(*tokens));
534
(uint16_t*)
WebPSafeMalloc
((uint64_t)histogram_image_xysize,
579
(uint32_t*)
WebPSafeMalloc
((uint64_t)histogram_image_xysize,
798
uint32_t* mem = (uint32_t*)
WebPSafeMalloc
(total_size, sizeof(*mem));
864
row =
WebPSafeMalloc
((uint64_t)width, sizeof(*row));
[
all
...]
analysis.c
35
uint8_t* const tmp = (uint8_t*)
WebPSafeMalloc
((uint64_t)w * h, sizeof(*tmp));
histogram.c
61
uint8_t* memory = (uint8_t*)
WebPSafeMalloc
(total_size, sizeof(*memory));
webpenc.c
222
mem = (uint8_t*)
WebPSafeMalloc
(size, sizeof(*mem));
Completed in 542 milliseconds