/external/jemalloc_new/include/jemalloc/internal/ |
tcache_structs.h | 24 cache_bin_t bins_small[NBINS]; 50 cache_bin_t bins_large[NSIZES-NBINS];
|
cache_bin.h | 9 * cache_bin_t to fill/flush. When the arena needs to pull stats from the 43 typedef struct cache_bin_s cache_bin_t; typedef in typeref:struct:cache_bin_s 78 cache_bin_t *bins_small; 79 cache_bin_t *bins_large; 84 cache_bin_t *bins_small, cache_bin_t *bins_large) { 91 cache_bin_alloc_easy(cache_bin_t *bin, bool *success) {
|
tcache_externs.h | 33 cache_bin_t *tbin, szind_t binind, bool *tcache_success); 34 void tcache_bin_flush_small(tsd_t *tsd, tcache_t *tcache, cache_bin_t *tbin, 36 void tcache_bin_flush_large(tsd_t *tsd, cache_bin_t *tbin, szind_t binind,
|
tcache_inlines.h | 45 cache_bin_t *bin; 109 cache_bin_t *bin; 170 cache_bin_t *bin; 195 cache_bin_t *bin;
|
jemalloc_internal_inlines_a.h | 109 JEMALLOC_ALWAYS_INLINE cache_bin_t * 115 JEMALLOC_ALWAYS_INLINE cache_bin_t *
|
arena_externs.h | 48 cache_bin_t *tbin, szind_t binind, uint64_t prof_accumbytes);
|
/external/jemalloc_new/src/ |
tcache.c | 47 cache_bin_t *tbin; 93 cache_bin_t *tbin, szind_t binind, bool *tcache_success) { 108 tcache_bin_flush_small(tsd_t *tsd, tcache_t *tcache, cache_bin_t *tbin, 197 tcache_bin_flush_large(tsd_t *tsd, cache_bin_t *tbin, szind_t binind, 380 memset(tcache->bins_small, 0, sizeof(cache_bin_t) * NBINS); 381 memset(tcache->bins_large, 0, sizeof(cache_bin_t) * (nhbins - NBINS)); 476 cache_bin_t *tbin = tcache_small_bin_get(tcache, i); 486 cache_bin_t *tbin = tcache_large_bin_get(tcache, i); 556 cache_bin_t *tbin = tcache_small_bin_get(tcache, i); 564 cache_bin_t *tbin = tcache_large_bin_get(tcache, i) [all...] |
arena.c | 160 cache_bin_t *tbin = &descriptor->bins_small[i]; 165 cache_bin_t *tbin = &descriptor->bins_large[i]; [all...] |