Searched defs:mem (Results 1 - 5 of 5) sorted by relevance

/bionic/libc/bionic/
H A Dmalloc_debug_leak.cpp84 static AllocationEntry* to_header(void* mem) { argument
85 return reinterpret_cast<AllocationEntry*>(mem) - 1;
224 extern "C" void fill_free(void* mem) { argument
225 size_t bytes = dlmalloc_usable_size(mem);
226 memset(mem, CHK_FILL_FREE, bytes);
227 dlfree(mem);
230 extern "C" void* fill_realloc(void* mem, size_t bytes) { argument
232 if (mem == NULL) {
236 size_t old_size = dlmalloc_usable_size(mem);
238 memcpy(buffer, mem, siz
291 leak_free(void* mem) argument
[all...]
H A Dmalloc_debug_common.cpp190 extern "C" size_t malloc_usable_size(void* mem) { argument
191 return dlmalloc_usable_size(mem);
226 extern "C" void free(void* mem) { argument
227 __libc_malloc_dispatch->free(mem);
H A Dmalloc_debug_qemu.cpp582 void qemu_instrumented_free(void* mem);
584 void* qemu_instrumented_realloc(void* mem, size_t bytes);
715 void qemu_instrumented_free(void* mem) { argument
718 if (mem == NULL) {
720 dlfree(mem);
725 if (query_qemu_malloc_info(mem, &desc, 1)) {
727 malloc_pid, getpid(), mem);
738 if (mem != mallocdesc_user_ptr(&desc)) {
740 malloc_pid, getpid(), mem);
745 if (notify_qemu_free(mem)) {
830 qemu_instrumented_realloc(void* mem, size_t bytes) argument
[all...]
/bionic/libc/kernel/arch-mips/asm/pci/
H A Dbridge.h664 struct resource mem; member in struct:bridge_controller
/bionic/libc/upstream-dlmalloc/
H A Dmalloc.c209 void tlfree(void* mem) { mspace_free(tlms, mem); }
1334 DLMALLOC_EXPORT void mspace_free(mspace msp, void* mem);
1345 DLMALLOC_EXPORT void* mspace_realloc(mspace msp, void* mem, size_t newsize);
1397 DLMALLOC_EXPORT size_t mspace_usable_size(const void* mem);
2076 mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2089 mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2098 mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2111 mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2126 Chunks always begin on even word boundaries, so the mem portio
3301 do_check_malloced_chunk(mstate m, void* mem, size_t s) argument
4061 void* mem = mmap_alloc(m, nb); local
4595 void* mem; local
4704 dlfree(void* mem) argument
4814 void* mem; local
4913 void* mem = 0; local
5002 void* mem; /* malloced aggregate space */ local
5125 void* mem = *a; local
5208 void* mem = 0; local
5253 void* mem = 0; local
5291 void* mem = 0; local
5407 dlmalloc_usable_size(const void* mem) argument
5531 void* mem; local
5638 mspace_free(mspace msp, void* mem) argument
5740 void* mem; local
5760 void* mem = 0; local
5805 void* mem = 0; local
5984 mspace_usable_size(const void* mem) argument
[all...]

Completed in 303 milliseconds