| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| pai.h | 6 typedef struct pai_s pai_t; typedef in typeref:struct:pai_s 9 edata_t *(*alloc)(tsdn_t *tsdn, pai_t *self, size_t size, 18 size_t (*alloc_batch)(tsdn_t *tsdn, pai_t *self, size_t size, 21 bool (*expand)(tsdn_t *tsdn, pai_t *self, edata_t *edata, 24 bool (*shrink)(tsdn_t *tsdn, pai_t *self, edata_t *edata, 26 void (*dalloc)(tsdn_t *tsdn, pai_t *self, edata_t *edata, 29 void (*dalloc_batch)(tsdn_t *tsdn, pai_t *self, 31 uint64_t (*time_until_deferred_work)(tsdn_t *tsdn, pai_t *self); 36 * same pai_t twice on every invocation. 40 pai_alloc(tsdn_t *tsdn, pai_t *self, size_t size, size_t alignment [all...] |
| sec.h | 89 pai_t pai; 90 pai_t *fallback; 97 bool sec_init(tsdn_t *tsdn, sec_t *sec, base_t *base, pai_t *fallback,
|
| hpa.h | 85 pai_t pai;
|
| pac.h | 83 pai_t pai;
|
| /src/external/bsd/jemalloc/include/jemalloc/internal/ |
| pai.h | 6 typedef struct pai_s pai_t; typedef in typeref:struct:pai_s 9 edata_t *(*alloc)(tsdn_t *tsdn, pai_t *self, size_t size, 18 size_t (*alloc_batch)(tsdn_t *tsdn, pai_t *self, size_t size, 21 bool (*expand)(tsdn_t *tsdn, pai_t *self, edata_t *edata, 24 bool (*shrink)(tsdn_t *tsdn, pai_t *self, edata_t *edata, 26 void (*dalloc)(tsdn_t *tsdn, pai_t *self, edata_t *edata, 29 void (*dalloc_batch)(tsdn_t *tsdn, pai_t *self, 31 uint64_t (*time_until_deferred_work)(tsdn_t *tsdn, pai_t *self); 36 * same pai_t twice on every invocation. 40 pai_alloc(tsdn_t *tsdn, pai_t *self, size_t size, size_t alignment [all...] |
| sec.h | 89 pai_t pai; 90 pai_t *fallback; 97 bool sec_init(tsdn_t *tsdn, sec_t *sec, base_t *base, pai_t *fallback,
|
| hpa.h | 85 pai_t pai;
|
| /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/ |
| pai.h | 6 typedef struct pai_s pai_t; typedef in typeref:struct:pai_s 9 edata_t *(*alloc)(tsdn_t *tsdn, pai_t *self, size_t size, 18 size_t (*alloc_batch)(tsdn_t *tsdn, pai_t *self, size_t size, 21 bool (*expand)(tsdn_t *tsdn, pai_t *self, edata_t *edata, 24 bool (*shrink)(tsdn_t *tsdn, pai_t *self, edata_t *edata, 26 void (*dalloc)(tsdn_t *tsdn, pai_t *self, edata_t *edata, 29 void (*dalloc_batch)(tsdn_t *tsdn, pai_t *self, 31 uint64_t (*time_until_deferred_work)(tsdn_t *tsdn, pai_t *self); 36 * same pai_t twice on every invocation. 40 pai_alloc(tsdn_t *tsdn, pai_t *self, size_t size, size_t alignment [all...] |
| sec.h | 89 pai_t pai; 90 pai_t *fallback; 97 bool sec_init(tsdn_t *tsdn, sec_t *sec, base_t *base, pai_t *fallback,
|
| hpa.h | 85 pai_t pai;
|
| /src/external/bsd/jemalloc.old/include/jemalloc/internal/ |
| pai.h | 6 typedef struct pai_s pai_t; typedef in typeref:struct:pai_s 9 edata_t *(*alloc)(tsdn_t *tsdn, pai_t *self, size_t size, 18 size_t (*alloc_batch)(tsdn_t *tsdn, pai_t *self, size_t size, 21 bool (*expand)(tsdn_t *tsdn, pai_t *self, edata_t *edata, 24 bool (*shrink)(tsdn_t *tsdn, pai_t *self, edata_t *edata, 26 void (*dalloc)(tsdn_t *tsdn, pai_t *self, edata_t *edata, 29 void (*dalloc_batch)(tsdn_t *tsdn, pai_t *self, 31 uint64_t (*time_until_deferred_work)(tsdn_t *tsdn, pai_t *self); 36 * same pai_t twice on every invocation. 40 pai_alloc(tsdn_t *tsdn, pai_t *self, size_t size, size_t alignment [all...] |
| sec.h | 89 pai_t pai; 90 pai_t *fallback; 97 bool sec_init(tsdn_t *tsdn, sec_t *sec, base_t *base, pai_t *fallback,
|
| hpa.h | 85 pai_t pai;
|
| /src/external/bsd/jemalloc/dist/src/ |
| pai.c | 5 pai_alloc_batch_default(tsdn_t *tsdn, pai_t *self, size_t size, size_t nallocs, 22 pai_dalloc_batch_default(tsdn_t *tsdn, pai_t *self,
|
| pac.c | 7 static edata_t *pac_alloc_impl(tsdn_t *tsdn, pai_t *self, size_t size, 10 static bool pac_expand_impl(tsdn_t *tsdn, pai_t *self, edata_t *edata, 12 static bool pac_shrink_impl(tsdn_t *tsdn, pai_t *self, edata_t *edata, 14 static void pac_dalloc_impl(tsdn_t *tsdn, pai_t *self, edata_t *edata, 16 static uint64_t pac_time_until_deferred_work(tsdn_t *tsdn, pai_t *self); 164 pac_alloc_impl(tsdn_t *tsdn, pai_t *self, size_t size, size_t alignment, 191 pac_expand_impl(tsdn_t *tsdn, pai_t *self, edata_t *edata, size_t old_size, 229 pac_shrink_impl(tsdn_t *tsdn, pai_t *self, edata_t *edata, size_t old_size, 251 pac_dalloc_impl(tsdn_t *tsdn, pai_t *self, edata_t *edata, 296 pac_time_until_deferred_work(tsdn_t *tsdn, pai_t *self) [all...] |
| hpa.c | 11 static edata_t *hpa_alloc(tsdn_t *tsdn, pai_t *self, size_t size, 14 static size_t hpa_alloc_batch(tsdn_t *tsdn, pai_t *self, size_t size, 16 static bool hpa_expand(tsdn_t *tsdn, pai_t *self, edata_t *edata, 18 static bool hpa_shrink(tsdn_t *tsdn, pai_t *self, edata_t *edata, 20 static void hpa_dalloc(tsdn_t *tsdn, pai_t *self, edata_t *edata, 22 static void hpa_dalloc_batch(tsdn_t *tsdn, pai_t *self, 24 static uint64_t hpa_time_until_deferred_work(tsdn_t *tsdn, pai_t *self); 709 hpa_from_pai(pai_t *self) { 718 hpa_alloc_batch(tsdn_t *tsdn, pai_t *self, size_t size, size_t nallocs, 760 hpa_alloc(tsdn_t *tsdn, pai_t *self, size_t size, size_t alignment, bool zero [all...] |
| sec.c | 6 static edata_t *sec_alloc(tsdn_t *tsdn, pai_t *self, size_t size, 9 static bool sec_expand(tsdn_t *tsdn, pai_t *self, edata_t *edata, 11 static bool sec_shrink(tsdn_t *tsdn, pai_t *self, edata_t *edata, 13 static void sec_dalloc(tsdn_t *tsdn, pai_t *self, edata_t *edata, 24 sec_init(tsdn_t *tsdn, sec_t *sec, base_t *base, pai_t *fallback, 221 sec_alloc(tsdn_t *tsdn, pai_t *self, size_t size, size_t alignment, bool zero, 265 sec_expand(tsdn_t *tsdn, pai_t *self, edata_t *edata, size_t old_size, 273 sec_shrink(tsdn_t *tsdn, pai_t *self, edata_t *edata, size_t old_size, 337 sec_dalloc(tsdn_t *tsdn, pai_t *self, edata_t *edata,
|
| pa.c | 115 static pai_t * 167 pai_t *pai = pa_get_pai(shard, edata); 192 pai_t *pai = pa_get_pai(shard, edata); 219 pai_t *pai = pa_get_pai(shard, edata);
|
| /src/external/bsd/jemalloc.old/dist/src/ |
| pai.c | 5 pai_alloc_batch_default(tsdn_t *tsdn, pai_t *self, size_t size, size_t nallocs, 22 pai_dalloc_batch_default(tsdn_t *tsdn, pai_t *self,
|
| pac.c | 7 static edata_t *pac_alloc_impl(tsdn_t *tsdn, pai_t *self, size_t size, 10 static bool pac_expand_impl(tsdn_t *tsdn, pai_t *self, edata_t *edata, 12 static bool pac_shrink_impl(tsdn_t *tsdn, pai_t *self, edata_t *edata, 14 static void pac_dalloc_impl(tsdn_t *tsdn, pai_t *self, edata_t *edata, 16 static uint64_t pac_time_until_deferred_work(tsdn_t *tsdn, pai_t *self); 164 pac_alloc_impl(tsdn_t *tsdn, pai_t *self, size_t size, size_t alignment, 191 pac_expand_impl(tsdn_t *tsdn, pai_t *self, edata_t *edata, size_t old_size, 229 pac_shrink_impl(tsdn_t *tsdn, pai_t *self, edata_t *edata, size_t old_size, 251 pac_dalloc_impl(tsdn_t *tsdn, pai_t *self, edata_t *edata, 296 pac_time_until_deferred_work(tsdn_t *tsdn, pai_t *self) [all...] |
| hpa.c | 11 static edata_t *hpa_alloc(tsdn_t *tsdn, pai_t *self, size_t size, 14 static size_t hpa_alloc_batch(tsdn_t *tsdn, pai_t *self, size_t size, 16 static bool hpa_expand(tsdn_t *tsdn, pai_t *self, edata_t *edata, 18 static bool hpa_shrink(tsdn_t *tsdn, pai_t *self, edata_t *edata, 20 static void hpa_dalloc(tsdn_t *tsdn, pai_t *self, edata_t *edata, 22 static void hpa_dalloc_batch(tsdn_t *tsdn, pai_t *self, 24 static uint64_t hpa_time_until_deferred_work(tsdn_t *tsdn, pai_t *self); 709 hpa_from_pai(pai_t *self) { 718 hpa_alloc_batch(tsdn_t *tsdn, pai_t *self, size_t size, size_t nallocs, 760 hpa_alloc(tsdn_t *tsdn, pai_t *self, size_t size, size_t alignment, bool zero [all...] |
| sec.c | 6 static edata_t *sec_alloc(tsdn_t *tsdn, pai_t *self, size_t size, 9 static bool sec_expand(tsdn_t *tsdn, pai_t *self, edata_t *edata, 11 static bool sec_shrink(tsdn_t *tsdn, pai_t *self, edata_t *edata, 13 static void sec_dalloc(tsdn_t *tsdn, pai_t *self, edata_t *edata, 24 sec_init(tsdn_t *tsdn, sec_t *sec, base_t *base, pai_t *fallback, 221 sec_alloc(tsdn_t *tsdn, pai_t *self, size_t size, size_t alignment, bool zero, 265 sec_expand(tsdn_t *tsdn, pai_t *self, edata_t *edata, size_t old_size, 273 sec_shrink(tsdn_t *tsdn, pai_t *self, edata_t *edata, size_t old_size, 337 sec_dalloc(tsdn_t *tsdn, pai_t *self, edata_t *edata,
|
| pa.c | 115 static pai_t * 167 pai_t *pai = pa_get_pai(shard, edata); 192 pai_t *pai = pa_get_pai(shard, edata); 219 pai_t *pai = pa_get_pai(shard, edata);
|
| /src/external/bsd/jemalloc/dist/test/unit/ |
| sec.c | 7 pai_t pai; 27 test_sec_init(sec_t *sec, pai_t *fallback, size_t nshards, size_t max_alloc, 53 pai_test_allocator_alloc(tsdn_t *tsdn, pai_t *self, size_t size, 75 pai_test_allocator_alloc_batch(tsdn_t *tsdn, pai_t *self, size_t size, 98 pai_test_allocator_expand(tsdn_t *tsdn, pai_t *self, edata_t *edata, 107 pai_test_allocator_shrink(tsdn_t *tsdn, pai_t *self, edata_t *edata, 115 pai_test_allocator_dalloc(tsdn_t *tsdn, pai_t *self, edata_t *edata, 123 pai_test_allocator_dalloc_batch(tsdn_t *tsdn, pai_t *self,
|
| /src/external/bsd/jemalloc.old/dist/test/unit/ |
| sec.c | 7 pai_t pai; 27 test_sec_init(sec_t *sec, pai_t *fallback, size_t nshards, size_t max_alloc, 53 pai_test_allocator_alloc(tsdn_t *tsdn, pai_t *self, size_t size, 75 pai_test_allocator_alloc_batch(tsdn_t *tsdn, pai_t *self, size_t size, 98 pai_test_allocator_expand(tsdn_t *tsdn, pai_t *self, edata_t *edata, 107 pai_test_allocator_shrink(tsdn_t *tsdn, pai_t *self, edata_t *edata, 115 pai_test_allocator_dalloc(tsdn_t *tsdn, pai_t *self, edata_t *edata, 123 pai_test_allocator_dalloc_batch(tsdn_t *tsdn, pai_t *self,
|