OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:new_mem
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libwebp/enc/
picture.c
194
uint8_t*
new_mem
;
local
198
new_mem
= (uint8_t*)WebPSafeMalloc(next_max_size, 1);
199
if (
new_mem
== NULL) {
203
memcpy(
new_mem
, w->mem, w->size);
206
w->mem =
new_mem
;
/external/e2fsprogs/e2fsck/
rehash.c
226
void *
new_mem
;
local
229
new_mem
= realloc(outdir->buf, blocks * fs->blocksize);
230
if (!
new_mem
)
232
outdir->buf =
new_mem
;
233
new_mem
= realloc(outdir->hashes,
235
if (!
new_mem
)
237
outdir->hashes =
new_mem
;
/bionic/libc/bionic/
malloc_debug_qemu.cpp
919
void*
new_mem
= mallocdesc_user_ptr(&new_desc);
local
[
all
...]
/external/compiler-rt/lib/asan/
asan_interceptors.cc
526
void *
new_mem
= asan_malloc(length + 1, &stack);
local
527
REAL(memcpy)(
new_mem
, s, length + 1);
528
return reinterpret_cast<char*>(
new_mem
);
Completed in 139 milliseconds