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

/bionic/libc/kernel/common/uapi/linux/
H A Dkexec.h45 const void *mem; member in struct:kexec_segment
/bionic/libc/bionic/
H A Dmalloc_debug_leak.cpp82 static inline AllocationEntry* to_header(void* mem) { argument
83 return reinterpret_cast<AllocationEntry*>(mem) - 1;
86 static inline const AllocationEntry* const_to_header(const void* mem) { argument
87 return reinterpret_cast<const AllocationEntry*>(mem) - 1;
226 extern "C" void fill_free(void* mem) { argument
227 size_t bytes = dlmalloc_usable_size(mem);
228 memset(mem, CHK_FILL_FREE, bytes);
229 dlfree(mem);
232 extern "C" void* fill_realloc(void* mem, size_t bytes) { argument
233 size_t oldSize = dlmalloc_usable_size(mem);
253 fill_malloc_usable_size(const void* mem) argument
296 leak_free(void* mem) argument
412 leak_malloc_usable_size(const void* mem) argument
[all...]
H A Dmalloc_debug_common.cpp226 extern "C" void free(void* mem) { argument
227 __libc_malloc_dispatch->free(mem);
242 extern "C" size_t malloc_usable_size(const void* mem) { argument
243 return __libc_malloc_dispatch->malloc_usable_size(mem);
H A Dmalloc_debug_qemu.cpp578 extern "C" void qemu_instrumented_free(void* mem);
580 extern "C" void* qemu_instrumented_realloc(void* mem, size_t bytes);
582 extern "C" size_t qemu_instrumented_malloc_usable_size(const void* mem);
712 extern "C" void qemu_instrumented_free(void* mem) { argument
715 if (mem == NULL) {
717 dlfree(mem);
722 if (query_qemu_malloc_info(mem, &desc, 1)) {
724 malloc_pid, getpid(), mem);
735 if (mem != mallocdesc_user_ptr(&desc)) {
737 malloc_pid, getpid(), mem);
827 qemu_instrumented_realloc(void* mem, size_t bytes) argument
972 qemu_instrumented_malloc_usable_size(const void* mem) 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 149 milliseconds