Lines Matching refs:binind
43 UNUSED size_t size, szind_t binind, bool zero, bool slow_path) { in tcache_alloc_small() argument
49 assert(binind < NBINS); in tcache_alloc_small()
50 bin = tcache_small_bin_get(tcache, binind); in tcache_alloc_small()
61 bin, binind, &tcache_hard_success); in tcache_alloc_small()
73 usize = sz_index2size(binind); in tcache_alloc_small()
80 arena_alloc_junk_small(ret, &bin_infos[binind], in tcache_alloc_small()
88 arena_alloc_junk_small(ret, &bin_infos[binind], true); in tcache_alloc_small()
107 szind_t binind, bool zero, bool slow_path) { in tcache_alloc_large() argument
112 assert(binind >= NBINS &&binind < nhbins); in tcache_alloc_large()
113 bin = tcache_large_bin_get(tcache, binind); in tcache_alloc_large()
136 usize = sz_index2size(binind); in tcache_alloc_large()
168 tcache_dalloc_small(tsd_t *tsd, tcache_t *tcache, void *ptr, szind_t binind, in tcache_dalloc_small() argument
176 arena_dalloc_junk_small(ptr, &bin_infos[binind]); in tcache_dalloc_small()
179 bin = tcache_small_bin_get(tcache, binind); in tcache_dalloc_small()
180 bin_info = &tcache_bin_info[binind]; in tcache_dalloc_small()
182 tcache_bin_flush_small(tsd, tcache, bin, binind, in tcache_dalloc_small()
193 tcache_dalloc_large(tsd_t *tsd, tcache_t *tcache, void *ptr, szind_t binind, in tcache_dalloc_large() argument
202 large_dalloc_junk(ptr, sz_index2size(binind)); in tcache_dalloc_large()
205 bin = tcache_large_bin_get(tcache, binind); in tcache_dalloc_large()
206 bin_info = &tcache_bin_info[binind]; in tcache_dalloc_large()
208 tcache_bin_flush_large(tsd, bin, binind, in tcache_dalloc_large()