Home | History | Annotate | Download | only in internal

Lines Matching refs:usize

301 	size_t usize JEMALLOC_CC_SILENCE_INIT(0);
321 * Only compute usize if required. The checks in the following if
325 usize = index2size(binind);
326 assert(tcache_salloc(tsd_tsdn(tsd), ret) == usize);
335 memset(ret, 0, usize);
342 memset(ret, 0, usize);
348 tcache->prof_accumbytes += usize;
378 size_t usize JEMALLOC_CC_SILENCE_INIT(0);
380 /* Only compute usize on demand */
383 usize = index2size(binind);
384 assert(usize <= tcache_maxclass);
387 if (config_prof && usize == LARGE_MINCLASS) {
399 usize);
401 memset(ret, 0, usize);
404 memset(ret, 0, usize);
409 tcache->prof_accumbytes += usize;