Searched refs:bytes_until_sample (Results 1 – 4 of 4) sorted by relevance
86 int64_t bytes_until_sample = tsd_bytes_until_sample_get(tsd); in prof_sample_check() local88 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()
72 O(bytes_until_sample, int64_t, int64_t) \
1171 uint64_t bytes_until_sample = (uint64_t)(log(u) / in prof_sample_threshold_update() local1174 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()
2355 int64_t bytes_until_sample = tsd_bytes_until_sample_get(tsd); in JEMALLOC_ATTR() local2356 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()