Lines Matching full:usize
226 prof_malloc_sample_object(const void *ptr, size_t usize, prof_tctx_t *tctx)
229 prof_tctx_set(ptr, usize, tctx);
233 tctx->cnts.curbytes += usize;
236 tctx->cnts.accumbytes += usize;
243 prof_free_sampled_object(tsd_t *tsd, size_t usize, prof_tctx_t *tctx)
248 assert(tctx->cnts.curbytes >= usize);
250 tctx->cnts.curbytes -= usize;