HomeSort by relevance Sort by last modified time
    Searched refs:malloc_zone_t (Results 1 - 9 of 9) sorted by null

  /external/compiler-rt/lib/asan/
asan_malloc_mac.cc 39 malloc_zone_t *zone = malloc_zone_from_ptr(ptr);
58 static malloc_zone_t *system_malloc_zone = NULL;
59 static malloc_zone_t *system_purgeable_zone = NULL;
65 size_t mz_size(malloc_zone_t* zone, const void* ptr) {
75 void *mz_malloc(malloc_zone_t *zone, size_t size) {
93 void *mz_calloc(malloc_zone_t *zone, size_t nmemb, size_t size) {
109 void *mz_valloc(malloc_zone_t *zone, size_t size) {
119 malloc_zone_t *orig_zone = malloc_zone_from_ptr(ptr);
134 void mz_free(malloc_zone_t *zone, void *ptr) {
136 malloc_zone_t *orig_zone = malloc_zone_from_ptr(ptr)
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
CheckedMalloc.cpp 39 static void* (*savedMalloc)(malloc_zone_t*, size_t);
40 static void* (*savedRealloc)(malloc_zone_t*, void*, size_t);
42 static void* checkedMalloc(malloc_zone_t* zone, size_t size)
49 static void* checkedRealloc(malloc_zone_t* zone, void* ptr, size_t size)
71 malloc_zone_t* zone = malloc_default_zone();
77 vm_size_t len = reinterpret_cast<vm_address_t>(zone) - pageStart + sizeof(malloc_zone_t);
  /external/webkit/Source/WebKit2/Shared/mac/
WebMemorySampler.mac.mm 73 if (const char* name = malloc_get_zone_name(reinterpret_cast<malloc_zone_t*>(zones[i]))) {
78 malloc_zone_statistics(reinterpret_cast<malloc_zone_t*>(zones[i]), &stats);
  /external/chromium/base/
process_util.h 21 // malloc_zone_t is defined in <malloc/malloc.h>, but this forward declaration
23 typedef struct _malloc_zone_t malloc_zone_t; typedef in typeref:struct:_malloc_zone_t
656 malloc_zone_t* GetPurgeableZone();
process_util_unittest.cc 831 malloc_zone_t* zone = base::GetPurgeableZone();
840 malloc_zone_t* zone = base::GetPurgeableZone();
849 malloc_zone_t* zone = base::GetPurgeableZone();
858 malloc_zone_t* zone = base::GetPurgeableZone();
867 malloc_zone_t* zone = base::GetPurgeableZone();
869 typedef void* (*zone_memalign_t)(malloc_zone_t*, size_t, size_t);
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.cpp 515 static size_t goodSize(malloc_zone_t*, size_t size) { return size; }
516 static boolean_t check(malloc_zone_t*) { return true; }
517 static void print(malloc_zone_t*, boolean_t) { }
518 static void log(malloc_zone_t*, void*) { }
519 static void forceLock(malloc_zone_t*) { }
520 static void forceUnlock(malloc_zone_t*) { }
521 static void statistics(malloc_zone_t*, malloc_statistics_t* stats) { memset(stats, 0, sizeof(malloc_statistics_t)); }
525 static size_t size(malloc_zone_t*, const void*);
526 static void* zoneMalloc(malloc_zone_t*, size_t);
527 static void* zoneCalloc(malloc_zone_t*, size_t numItems, size_t size)
    [all...]
  /external/valgrind/main/include/vki/
vki-darwin.h 102 #define vki_malloc_zone_t malloc_zone_t
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 565 milliseconds