/art/runtime/gc/space/ |
dlmalloc_space-inl.h | 41 mirror::Object* result = reinterpret_cast<mirror::Object*>(mspace_malloc(mspace_, num_bytes));
|
/external/eigen/unsupported/test/mpreal/ |
dlmalloc.h | 417 region of space that supports mspace_malloc, etc.
427 dynamically as needed to service mspace_malloc requests. You can
467 mspace_malloc behaves as malloc, but operates within
470 void* mspace_malloc(mspace msp, size_t bytes);
|
dlmalloc.c | 179 this file also defines mspace_malloc, mspace_free, etc. These
187 #define mymalloc(bytes) mspace_malloc(mymspace, bytes)
197 return mspace_malloc(tlms, bytes);
5050 void* mspace_malloc(mspace msp, size_t bytes) { function [all...] |
/bionic/libc/upstream-dlmalloc/ |
malloc.h | 527 region of space that supports mspace_malloc, etc. 537 dynamically as needed to service mspace_malloc requests. You can 593 void* mspace_malloc(mspace msp, size_t bytes);
|
malloc.c | 189 this file also defines mspace_malloc, mspace_free, etc. These 197 #define mymalloc(bytes) mspace_malloc(mymspace, bytes) 207 return mspace_malloc(tlms, bytes); 5524 void* mspace_malloc(mspace msp, size_t bytes) { function [all...] |
/system/core/libpixelflinger/codeflinger/ |
CodeCache.cpp | 106 mBase = (uint32_t*)mspace_malloc(getMspace(), size);
|
/external/libffi/src/ |
dlmalloc.c | 173 this file also defines mspace_malloc, mspace_free, etc. These 181 #define mymalloc(bytes) mspace_malloc(mymspace, bytes) 191 return mspace_malloc(tlms, bytes); 4486 void* mspace_malloc(mspace msp, size_t bytes) { function [all...] |
/external/qemu/distrib/sdl-1.2.15/src/stdlib/ |
SDL_malloc.c | 209 this file also defines mspace_malloc, mspace_free, etc. These 217 #define mymalloc(bytes) mspace_malloc(mymspace, bytes) 227 return mspace_malloc(tlms, bytes); 4496 void* mspace_malloc(mspace msp, size_t bytes) { function [all...] |
/dalvik/vm/alloc/ |
HeapSource.cpp | 938 * mspace_malloc which doesn't memset the allocated memory and madvise 941 ptr = mspace_malloc(heap->msp, n); [all...] |