Searched refs:prof_active (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dprof_inlines_a.h78 * setting prof_active to false. No locking is used when reading
79 * prof_active in the fast path, so there are no guarantees regarding
82 return prof_active;
H A Dprof_inlines_b.h146 prof_alloc_prep(tsd_t *tsd, size_t usize, bool prof_active, bool update) { argument
153 if (!prof_active || likely(prof_sample_accum_update(tsd, usize, update,
182 bool prof_active, bool updated, const void *old_ptr, size_t old_usize,
189 if (prof_active && !updated && ptr != NULL) {
181 prof_realloc(tsd_t *tsd, const void *ptr, size_t usize, prof_tctx_t *tctx, bool prof_active, bool updated, const void *old_ptr, size_t old_usize, prof_tctx_t *old_tctx) argument
H A Dprof_externs.h26 extern bool prof_active;
H A Dprivate_namespace.h306 #define prof_active JEMALLOC_N(prof_active) macro
/freebsd-13-stable/contrib/jemalloc/src/
H A Djemalloc.c1371 CONF_HANDLE_BOOL(opt_prof_active, "prof_active")
2361 * Avoid a prof_active check on the fastpath.
2362 * If prof_active is false, set bytes_until_sample to
2363 * a large value. If prof_active is set to true,
2366 if (!prof_active) {
2536 bool prof_active; local
2539 prof_active = prof_active_get_unlocked();
2541 tctx = prof_alloc_prep(tsd, usize, prof_active, true);
2553 prof_realloc(tsd, p, usize, tctx, prof_active, true, old_ptr, old_usize,
3163 bool prof_active; local
3327 bool prof_active; local
[all...]
H A Dprof.c54 bool prof_active; variable
2404 prof_active_current = prof_active;
2414 prof_active_old = prof_active;
2415 prof_active = active;
2960 prof_active = opt_prof_active;
2961 if (malloc_mutex_init(&prof_active_mtx, "prof_active",
H A Dctl.c148 CTL_PROTO(prof_active)
334 {NAME("prof_active"), CTL(opt_prof_active)},
413 {NAME("active"), CTL(prof_active)},

Completed in 190 milliseconds