Searched refs:config_prof (Results 1 – 13 of 13) sorted by relevance
| /NextBSD/contrib/jemalloc/src/ |
| HD | prof.c | 201 cassert(config_prof); in rb_gen() 262 cassert(config_prof); in bt_init() 272 cassert(config_prof); in prof_enter() 287 cassert(config_prof); in prof_leave() 315 cassert(config_prof); in prof_backtrace() 329 cassert(config_prof); in prof_unwind_init_callback() 340 cassert(config_prof); in prof_unwind_callback() 358 cassert(config_prof); in prof_backtrace() 379 cassert(config_prof); in prof_backtrace() 528 cassert(config_prof); in prof_backtrace() [all …]
|
| HD | jemalloc.c | 1118 if (config_prof) { in malloc_conf_init() 1187 if (config_prof) in malloc_init_hard_a0_locked() 1204 if (config_prof) in malloc_init_hard_a0_locked() 1336 if (config_prof && prof_boot2()) { in malloc_init_hard() 1407 if (config_prof && opt_prof) { in imalloc_body() 1441 assert(usize == isalloc(ret, config_prof)); in JEMALLOC_ATTR() 1527 if (config_prof && opt_prof) in imemalign() 1539 assert(usize == isalloc(result, config_prof)); in imemalign() 1561 config_prof), false); in je_posix_memalign() 1577 JEMALLOC_VALGRIND_MALLOC(err == 0, ret, isalloc(ret, config_prof), in JEMALLOC_ATTR() [all …]
|
| HD | tcache.c | 79 arena_tcache_fill_small(arena, tbin, binind, config_prof ? in tcache_alloc_small_hard() 81 if (config_prof) in tcache_alloc_small_hard() 109 if (config_prof && bin_arena == arena) { in tcache_bin_flush_small() 189 if (config_prof) in tcache_bin_flush_large() 192 if ((config_prof || config_stats) && locked_arena == arena) { in tcache_bin_flush_large() 193 if (config_prof) { in tcache_bin_flush_large() 228 if (config_prof && idump) in tcache_bin_flush_large() 378 if (config_prof && tcache->prof_accumbytes > 0 && in tcache_destroy()
|
| HD | ctl.c | 81 CTL_PROTO(config_prof) 245 {NAME("prof"), CTL(config_prof)}, 1249 CTL_RO_BOOL_CONFIG_GEN(config_prof) in CTL_RO_BOOL_CONFIG_GEN() 1275 CTL_RO_NL_CGEN(config_prof, opt_prof, opt_prof, bool) in CTL_RO_BOOL_CONFIG_GEN() 1276 CTL_RO_NL_CGEN(config_prof, opt_prof_prefix, opt_prof_prefix, const char *) in CTL_RO_BOOL_CONFIG_GEN() 1277 CTL_RO_NL_CGEN(config_prof, opt_prof_active, opt_prof_active, bool) in CTL_RO_BOOL_CONFIG_GEN() 1278 CTL_RO_NL_CGEN(config_prof, opt_prof_thread_active_init, in CTL_RO_BOOL_CONFIG_GEN() 1280 CTL_RO_NL_CGEN(config_prof, opt_lg_prof_sample, opt_lg_prof_sample, size_t) in CTL_RO_BOOL_CONFIG_GEN() 1281 CTL_RO_NL_CGEN(config_prof, opt_prof_accum, opt_prof_accum, bool) in CTL_RO_BOOL_CONFIG_GEN() 1282 CTL_RO_NL_CGEN(config_prof, opt_lg_prof_interval, opt_lg_prof_interval, ssize_t) in CTL_RO_BOOL_CONFIG_GEN() [all …]
|
| HD | quarantine.c | 100 assert(obj->usize == isalloc(obj->ptr, config_prof)); in quarantine_drain_one() 120 size_t usize = isalloc(ptr, config_prof); in quarantine()
|
| HD | chunk.c | 149 if (config_prof && opt_prof) { in chunk_register() 175 if (config_prof && opt_prof) { in chunk_deregister()
|
| HD | arena.c | 1997 if (config_prof && arena_prof_accum(arena, prof_accumbytes)) in arena_tcache_fill_small() 2177 if (config_prof && !isthreaded && arena_prof_accum(arena, size)) in arena_malloc_small() 2246 if (config_prof) in arena_malloc_large() 2249 if (config_prof && idump) in arena_malloc_large() 2391 cassert(config_prof); in arena_prof_promoted() 2788 isalloc(ptr, config_prof) - oldsize); in arena_ralloc_large() 2791 isalloc(ptr, config_prof) - oldsize); in arena_ralloc_large() 3038 if (config_prof) in arena_new()
|
| /NextBSD/contrib/jemalloc/include/jemalloc/internal/ |
| HD | prof.h | 380 cassert(config_prof); in prof_tdata_get() 403 cassert(config_prof); in prof_tctx_get() 413 cassert(config_prof); in prof_tctx_set() 424 cassert(config_prof); in prof_tctx_reset() 436 cassert(config_prof); in prof_sample_accum_update() 485 cassert(config_prof); in prof_malloc() 502 cassert(config_prof); in prof_realloc() 536 cassert(config_prof); in prof_free()
|
| HD | arena.h | 897 cassert(config_prof); in arena_prof_accum_impl() 912 cassert(config_prof); in arena_prof_accum_locked() 923 cassert(config_prof); in arena_prof_accum() 1075 cassert(config_prof); in arena_prof_tctx_get() 1101 cassert(config_prof); in arena_prof_tctx_set() 1136 cassert(config_prof); in arena_prof_tctx_reset() 1219 if (unlikely(binind == BININD_INVALID || (config_prof && !demote in arena_salloc() 1303 if (config_prof && opt_prof) { in arena_sdalloc()
|
| HD | tcache.h | 304 if (config_prof) in tcache_alloc_small() 334 if (config_prof && usize == LARGE_MINCLASS) { in tcache_alloc_large() 354 if (config_prof) in tcache_alloc_large()
|
| HD | jemalloc_internal.h | 49 static const bool config_prof = variable 875 assert(config_prof || !demote); in isalloc() 891 config_prof)); in iallocztm() 937 config_prof)); in ipallocztm() 1003 config_prof)); in idalloctm()
|
| HD | extent.h | 206 if (config_prof) in extent_node_init()
|
| /NextBSD/contrib/jemalloc/ |
| HD | FREEBSD-diffs | 75 static const bool config_prof = 326 + *rsize = isalloc(p, config_prof); 355 + *rsize = isalloc(*ptr, config_prof);
|