Home | History | Annotate | Download | only in src

Lines Matching refs:usize

219 prof_malloc_sample_object(const void *ptr, size_t usize, prof_tctx_t *tctx)
226 tctx->cnts.curbytes += usize;
229 tctx->cnts.accumbytes += usize;
236 prof_free_sampled_object(tsd_t *tsd, size_t usize, prof_tctx_t *tctx)
241 assert(tctx->cnts.curbytes >= usize);
243 tctx->cnts.curbytes -= usize;