HomeSort by relevance Sort by last modified time
    Searched defs:tbin (Results 1 - 2 of 2) sorted by null

  /external/jemalloc/include/jemalloc/internal/
tcache.h 148 tcache_bin_t *tbin, szind_t binind, bool *tcache_success);
149 void tcache_bin_flush_small(tsd_t *tsd, tcache_t *tcache, tcache_bin_t *tbin,
151 void tcache_bin_flush_large(tsd_t *tsd, tcache_bin_t *tbin, szind_t binind,
178 void *tcache_alloc_easy(tcache_bin_t *tbin, bool *tcache_success);
268 tcache_alloc_easy(tcache_bin_t *tbin, bool *tcache_success)
272 if (unlikely(tbin->ncached == 0)) {
273 tbin->low_water = -1;
285 ret = *(tbin->avail - tbin->ncached);
286 tbin->ncached--
299 tcache_bin_t *tbin; local
    [all...]
  /external/jemalloc/src/
tcache.c 40 tcache_bin_t *tbin = &tcache->tbins[binind]; local
43 if (tbin->low_water > 0) {
48 tcache_bin_flush_small(tsd, tcache, tbin, binind,
49 tbin->ncached - tbin->low_water + (tbin->low_water
52 tcache_bin_flush_large(tsd, tbin, binind, tbin->ncached
53 - tbin->low_water + (tbin->low_water >> 2), tcache)
370 tcache_bin_t *tbin = &tcache->tbins[i]; local
382 tcache_bin_t *tbin = &tcache->tbins[i]; local
434 tcache_bin_t *tbin = &tcache->tbins[i]; local
443 tcache_bin_t *tbin = &tcache->tbins[i]; local
    [all...]

Completed in 229 milliseconds