Searched refs:tbin (Results 1 - 5 of 5) sorted by relevance

/fuchsia/zircon/third_party/ulib/jemalloc/src/
H A Dtcache.c36 tcache_bin_t *tbin = &tcache->tbins[binind]; local
39 if (tbin->low_water > 0) {
44 tcache_bin_flush_small(tsd, tcache, tbin, binind,
45 tbin->ncached - tbin->low_water + (tbin->low_water
48 tcache_bin_flush_large(tsd, tbin, binind, tbin->ncached
49 - tbin->low_water + (tbin
73 tcache_alloc_small_hard(tsdn_t *tsdn, arena_t *arena, tcache_t *tcache, tcache_bin_t *tbin, szind_t binind, bool *tcache_success) argument
88 tcache_bin_flush_small(tsd_t *tsd, tcache_t *tcache, tcache_bin_t *tbin, szind_t binind, unsigned rem) argument
166 tcache_bin_flush_large(tsd_t *tsd, tcache_bin_t *tbin, szind_t binind, unsigned rem, tcache_t *tcache) argument
357 tcache_bin_t *tbin = &tcache->tbins[i]; local
366 tcache_bin_t *tbin = &tcache->tbins[i]; local
408 tcache_bin_t *tbin = &tcache->tbins[i]; local
417 tcache_bin_t *tbin = &tcache->tbins[i]; local
[all...]
H A Darena.c1101 arena_tcache_fill_small(tsdn_t *tsdn, arena_t *arena, tcache_bin_t *tbin, argument
1107 assert(tbin->ncached == 0);
1114 tbin->lg_fill_div); i < nfill; i++) {
1125 * OOM. tbin->avail isn't yet filled down to its first
1127 * be moved just before tbin->avail before bailing out.
1130 memmove(tbin->avail - i, tbin->avail - nfill,
1140 *(tbin->avail - nfill + i) = ptr;
1144 bin->stats.nrequests += tbin->tstats.nrequests;
1147 tbin
1630 tcache_bin_t *tbin; local
[all...]
/fuchsia/zircon/third_party/ulib/jemalloc/include/jemalloc/internal/
H A Dtcache_inlines.h10 void *tcache_alloc_easy(tcache_bin_t *tbin, bool *tcache_success);
99 tcache_alloc_easy(tcache_bin_t *tbin, bool *tcache_success) argument
103 if (unlikely(tbin->ncached == 0)) {
104 tbin->low_water = -1;
116 ret = *(tbin->avail - tbin->ncached);
117 tbin->ncached--;
119 if (unlikely((int)tbin->ncached < tbin->low_water))
120 tbin
130 tcache_bin_t *tbin; local
[all...]
H A Dtcache_externs.h33 tcache_bin_t *tbin, szind_t binind, bool *tcache_success);
34 void tcache_bin_flush_small(tsd_t *tsd, tcache_t *tcache, tcache_bin_t *tbin,
36 void tcache_bin_flush_large(tsd_t *tsd, tcache_bin_t *tbin, szind_t binind,
H A Darena_externs.h45 tcache_bin_t *tbin, szind_t binind, uint64_t prof_accumbytes);

Completed in 85 milliseconds