Searched defs:_malloc_zone_t (Results 1 – 1 of 1) sorted by relevance
/aosp_15_r20/external/jemalloc_new/src/ |
H A D | zone.c | 14 typedef struct _malloc_zone_t { struct 17 size_t (*size)(struct _malloc_zone_t *, const void *); argument 18 void *(*malloc)(struct _malloc_zone_t *, size_t); argument 19 void *(*calloc)(struct _malloc_zone_t *, size_t, size_t); argument 20 void *(*valloc)(struct _malloc_zone_t *, size_t); argument 21 void (*free)(struct _malloc_zone_t *, void *); argument 22 void *(*realloc)(struct _malloc_zone_t *, void *, size_t); argument 23 void (*destroy)(struct _malloc_zone_t *); argument 25 unsigned (*batch_malloc)(struct _malloc_zone_t *, size_t, void **, unsigned); argument 26 void (*batch_free)(struct _malloc_zone_t *, void **, unsigned); argument [all …]
|