Searched refs:lg_fill_div (Results 1 - 3 of 3) sorted by relevance

/external/jemalloc/src/
H A Dtcache.c46 * Reduce fill count by 2X. Limit lg_fill_div such that the
49 if ((tbin_info->ncached_max >> (tbin->lg_fill_div+1)) >= 1)
50 tbin->lg_fill_div++;
53 * Increase fill count by 2X. Make sure lg_fill_div stays
56 if (tbin->lg_fill_div > 1)
57 tbin->lg_fill_div--;
344 tcache->tbins[i].lg_fill_div = 1;
H A Darena.c1573 tbin->lg_fill_div); i < nfill; i++) {
/external/jemalloc/include/jemalloc/internal/
H A Dtcache.h77 unsigned lg_fill_div; /* Fill (ncached_max >> lg_fill_div). */ member in struct:tcache_bin_s

Completed in 193 milliseconds