Searched refs:prof_active (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/jemalloc/include/jemalloc/internal/ |
H A D | prof_inlines_b.h | 146 prof_alloc_prep(tsd_t *tsd, size_t usize, bool prof_active, bool update) { in prof_alloc_prep() argument 153 if (!prof_active || likely(prof_sample_accum_update(tsd, usize, update, in prof_alloc_prep() 182 bool prof_active, bool updated, const void *old_ptr, size_t old_usize, in prof_realloc() argument 189 if (prof_active && !updated && ptr != NULL) { in prof_realloc()
|
H A D | prof_inlines_a.h | 82 return prof_active; in prof_active_get_unlocked()
|
H A D | prof_externs.h | 26 extern bool prof_active;
|
/freebsd/contrib/jemalloc/src/ |
H A D | jemalloc.c | 2366 if (!prof_active) { in JEMALLOC_ATTR() 2536 bool prof_active; in irealloc_prof() local 2539 prof_active = prof_active_get_unlocked(); in irealloc_prof() 2541 tctx = prof_alloc_prep(tsd, usize, prof_active, true); in irealloc_prof() 2553 prof_realloc(tsd, p, usize, tctx, prof_active, true, old_ptr, old_usize, in irealloc_prof() 3163 bool prof_active; in irallocx_prof() local 3166 prof_active = prof_active_get_unlocked(); in irallocx_prof() 3168 tctx = prof_alloc_prep(tsd, *usize, prof_active, false); in irallocx_prof() 3192 prof_realloc(tsd, p, *usize, tctx, prof_active, false, old_ptr, in irallocx_prof() 3327 bool prof_active; in ixallocx_prof() local [all …]
|
H A D | prof.c | 54 bool prof_active; variable 2404 prof_active_current = prof_active; in prof_active_get() 2414 prof_active_old = prof_active; in prof_active_set() 2415 prof_active = active; in prof_active_set() 2960 prof_active = opt_prof_active; in prof_boot2()
|
H A D | ctl.c | 148 CTL_PROTO(prof_active) 413 {NAME("active"), CTL(prof_active)},
|
/freebsd/lib/libc/stdlib/malloc/jemalloc/include/jemalloc/internal/ |
H A D | private_namespace.h | 306 #define prof_active JEMALLOC_N(prof_active) macro
|
/freebsd/contrib/jemalloc/ |
H A D | ChangeLog | 160 - Allow prof_active to control opt.lg_prof_interval and prof.gdump. 802 allocation events against concurrent prof_active changes.
|