HomeSort by relevance Sort by last modified time
    Searched refs:lg_fill_div (Results 1 - 3 of 3) sorted by null

  /external/jemalloc/src/
tcache.c 52 * Reduce fill count by 2X. Limit lg_fill_div such that the
55 if ((tbin_info->ncached_max >> (tbin->lg_fill_div+1)) >= 1)
56 tbin->lg_fill_div++;
59 * Increase fill count by 2X. Make sure lg_fill_div stays
62 if (tbin->lg_fill_div > 1)
63 tbin->lg_fill_div--;
339 tcache->tbins[i].lg_fill_div = 1;
arena.c     [all...]
  /external/jemalloc/include/jemalloc/internal/
tcache.h 83 unsigned lg_fill_div; /* Fill (ncached_max >> lg_fill_div). */ member in struct:tcache_bin_s

Completed in 34 milliseconds