Home
last modified time | relevance | path

Searched refs:ncached_max (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/jemalloc/include/jemalloc/internal/
H A Dcache_bin.h40 cache_bin_sz_t ncached_max; member
121 if (unlikely(bin->ncached == bin_info->ncached_max)) { in cache_bin_dalloc_easy()
124 assert(bin->ncached < bin_info->ncached_max); in cache_bin_dalloc_easy()
H A Dtcache_inlines.h180 (bin_info->ncached_max >> 1)); in tcache_dalloc_small()
204 if (unlikely(bin->ncached == bin_info->ncached_max)) { in tcache_dalloc_large()
206 (bin_info->ncached_max >> 1), tcache); in tcache_dalloc_large()
208 assert(bin->ncached < bin_info->ncached_max); in tcache_dalloc_large()
/freebsd-14.2/contrib/jemalloc/src/
H A Dtcache.c63 if ((tbin_info->ncached_max >> in tcache_event_hard()
425 stack_offset += tcache_bin_info[i].ncached_max * sizeof(void *); in tcache_init()
435 stack_offset += tcache_bin_info[i].ncached_max * sizeof(void *); in tcache_init()
555 (uintptr_t)tcache_bin_info[0].ncached_max * sizeof(void *)); in tcache_destroy()
759 tcache_bin_info[i].ncached_max = in tcache_boot()
763 tcache_bin_info[i].ncached_max = in tcache_boot()
766 tcache_bin_info[i].ncached_max = in tcache_boot()
769 stack_nelms += tcache_bin_info[i].ncached_max; in tcache_boot()
772 tcache_bin_info[i].ncached_max = TCACHE_NSLOTS_LARGE; in tcache_boot()
773 stack_nelms += tcache_bin_info[i].ncached_max; in tcache_boot()
H A Darena.c1394 for (i = 0, nfill = (tcache_bin_info[binind].ncached_max >> in arena_tcache_fill_small()