Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/jemalloc/include/jemalloc/internal/
H A Dprof_inlines_b.h86 int64_t bytes_until_sample = tsd_bytes_until_sample_get(tsd); in prof_sample_check() local
88 bytes_until_sample -= usize; in prof_sample_check()
90 tsd_bytes_until_sample_set(tsd, bytes_until_sample); in prof_sample_check()
93 if (likely(bytes_until_sample >= check)) { in prof_sample_check()
H A Dtsd.h72 O(bytes_until_sample, int64_t, int64_t) \
/freebsd-14.2/contrib/jemalloc/src/
H A Dprof.c1171 uint64_t bytes_until_sample = (uint64_t)(log(u) / in prof_sample_threshold_update() local
1174 if (bytes_until_sample > SSIZE_MAX) { in prof_sample_threshold_update()
1175 bytes_until_sample = SSIZE_MAX; in prof_sample_threshold_update()
1177 tsd_bytes_until_sample_set(tsd_fetch(), bytes_until_sample); in prof_sample_threshold_update()
H A Djemalloc.c2355 int64_t bytes_until_sample = tsd_bytes_until_sample_get(tsd); in JEMALLOC_ATTR() local
2356 bytes_until_sample -= usize; in JEMALLOC_ATTR()
2357 tsd_bytes_until_sample_set(tsd, bytes_until_sample); in JEMALLOC_ATTR()
2359 if (unlikely(bytes_until_sample < 0)) { in JEMALLOC_ATTR()