Lines Matching refs:usize
146 size_t usize; member
343 prof_malloc_sample_object(tsdn_t *tsdn, const void *ptr, size_t usize, in prof_malloc_sample_object() argument
345 prof_tctx_set(tsdn, ptr, usize, NULL, tctx); in prof_malloc_sample_object()
355 tctx->cnts.curbytes += usize; in prof_malloc_sample_object()
358 tctx->cnts.accumbytes += usize; in prof_malloc_sample_object()
444 prof_try_log(tsd_t *tsd, const void *ptr, size_t usize, prof_tctx_t *tctx) { in prof_try_log() argument
506 new_node->usize = usize; in prof_try_log()
521 prof_free_sampled_object(tsd_t *tsd, const void *ptr, size_t usize, in prof_free_sampled_object() argument
526 assert(tctx->cnts.curbytes >= usize); in prof_free_sampled_object()
528 tctx->cnts.curbytes -= usize; in prof_free_sampled_object()
530 prof_try_log(tsd, ptr, usize, tctx); in prof_free_sampled_object()
2660 &alloc_node->usize); in prof_log_emit_allocs()