Lines Matching refs:usize
300 size_t usize JEMALLOC_CC_SILENCE_INIT(0); in tcache_alloc_small()
324 usize = index2size(binind); in tcache_alloc_small()
325 assert(tcache_salloc(ret) == usize); in tcache_alloc_small()
334 memset(ret, 0, usize); in tcache_alloc_small()
341 memset(ret, 0, usize); in tcache_alloc_small()
347 tcache->prof_accumbytes += usize; in tcache_alloc_small()
377 size_t usize JEMALLOC_CC_SILENCE_INIT(0); in tcache_alloc_large()
382 usize = index2size(binind); in tcache_alloc_large()
383 assert(usize <= tcache_maxclass); in tcache_alloc_large()
386 if (config_prof && usize == LARGE_MINCLASS) { in tcache_alloc_large()
397 memset(ret, 0xa5, usize); in tcache_alloc_large()
399 memset(ret, 0, usize); in tcache_alloc_large()
402 memset(ret, 0, usize); in tcache_alloc_large()
407 tcache->prof_accumbytes += usize; in tcache_alloc_large()