Home
last modified time | relevance | path

Searched refs:lg_fill_div (Results 1 – 6 of 6) sorted by relevance

/external/jemalloc/src/
Dtcache.c59 if ((tbin_info->ncached_max >> (tbin->lg_fill_div+1)) >= 1) in tcache_event_hard()
60 tbin->lg_fill_div++; in tcache_event_hard()
66 if (tbin->lg_fill_div > 1) in tcache_event_hard()
67 tbin->lg_fill_div--; in tcache_event_hard()
346 tcache->tbins[i].lg_fill_div = 1; in tcache_create()
Darena.c2418 tbin->lg_fill_div); i < nfill; i++) { in arena_tcache_fill_small()
/external/jemalloc_new/include/jemalloc/internal/
Dtcache_structs.h44 uint8_t lg_fill_div[NBINS]; member
/external/jemalloc_new/src/
Dtcache.c67 (tcache->lg_fill_div[binind] + 1)) >= 1) { in tcache_event_hard()
68 tcache->lg_fill_div[binind]++; in tcache_event_hard()
79 if (binind < NBINS && tcache->lg_fill_div[binind] > 1) { in tcache_event_hard()
80 tcache->lg_fill_div[binind]--; in tcache_event_hard()
384 tcache->lg_fill_div[i] = 1; in tcache_init()
Darena.c1263 tcache->lg_fill_div[binind]); i < nfill; i++) { in arena_tcache_fill_small()
/external/jemalloc/include/jemalloc/internal/
Dtcache.h83 unsigned lg_fill_div; /* Fill (ncached_max >> lg_fill_div). */ member