Lines Matching refs:idx
318 # define tidx2usize(idx) (((size_t) idx) * MALLOC_ALIGNMENT + MINSIZE - SIZE_SZ)
326 idx 0 bytes 0..24 (64-bit) or 0..12 (32-bit)
327 idx 1 bytes 25..40 or 13..20
328 idx 2 bytes 41..56 or 21..28
1744 #define fastbin(ar_ptr, idx) ((ar_ptr)->fastbinsY[idx])
2267 unsigned int idx;
2358 idx = bin_index (size);
2359 assert (idx == i);
3773 unsigned int idx; /* associated bin index */
3840 idx = fastbin_index (nb);
3841 mfastbinptr *fb = &fastbin (av, idx);
3857 if (__builtin_expect (victim_idx != idx, 0))
3903 idx = smallbin_index (nb);
3904 bin = bin_at (av, idx);
3963 idx = largebin_index (nb);
4185 bin = bin_at (av, idx);
4256 ++idx;
4257 bin = bin_at (av, idx);
4258 block = idx2block (idx);
4260 bit = idx2bit (idx);
4397 idx = smallbin_index (nb);
4399 idx = largebin_index (nb);
4528 unsigned int idx = fastbin_index(size);
4529 fb = &fastbin (av, idx);
4561 && __builtin_expect (fastbin_index (chunksize (old)) != idx, 0))
4753 unsigned int idx = fastbin_index (chunksize (p));
4754 if ((&fastbin (av, idx)) != fb)