Searched defs:dlmalloc (Results 1 - 4 of 4) sorted by relevance

/bionic/libc/bionic/
H A Ddlmalloc.h23 /* Configure dlmalloc. */
38 /* dlmalloc_usable_size and dlmalloc were exposed in the NDK and some
44 #define dlmalloc dlmalloc_real macro
54 #include "../upstream-dlmalloc/malloc.h"
H A Dndk_cruft.cpp317 // export dlmalloc_usable_size. We are moving away from dlmalloc in L
323 // Older versions of appportable used dlmalloc directly instead of malloc,
325 extern "C" void* dlmalloc(size_t size) { function
/bionic/libc/upstream-dlmalloc/
H A Dmalloc.h54 #define dlmalloc malloc macro
114 void* dlmalloc(size_t);
H A Dmalloc.c2 This is a version (aka dlmalloc) of malloc/free/realloc written by
232 one VirtualAlloc()ed region. Because dlmalloc uses a small (64Kb)
818 #define dlmalloc malloc macro
854 DLMALLOC_EXPORT void* dlmalloc(size_t);
3820 ((m == gm)? dlmalloc(b) : mspace_malloc(m, b))
3824 #define internal_malloc(m, b) dlmalloc(b)
4566 void* dlmalloc(size_t bytes) { function
4822 mem = dlmalloc(req);
5210 mem = dlmalloc(bytes);
5285 return dlmalloc(byte
[all...]

Completed in 281 milliseconds