Lines Matching refs:fb
3821 #define REMOVE_FB(fb, victim, pp) \ in _int_malloc() argument
3831 while ((pp = catomic_compare_and_exchange_val_acq (fb, pp, victim)) \ in _int_malloc()
3837 mfastbinptr *fb = &fastbin (av, idx); in _int_malloc() local
3839 victim = *fb; in _int_malloc()
3847 *fb = REVEAL_PTR (victim->fd); in _int_malloc()
3849 REMOVE_FB (fb, pp, victim); in _int_malloc()
3866 && (tc_victim = *fb) != NULL) in _int_malloc()
3871 *fb = REVEAL_PTR (tc_victim->fd); in _int_malloc()
3874 REMOVE_FB (fb, pp, tc_victim); in _int_malloc()
4419 mfastbinptr *fb; /* associated fastbin */ in _int_free() local
4525 fb = &fastbin (av, idx); in _int_free()
4528 mchunkptr old = *fb, old2; in _int_free()
4537 *fb = p; in _int_free()
4549 while ((old = catomic_compare_and_exchange_val_rel (fb, p, old2)) in _int_free()
4712 mfastbinptr* fb; /* current fastbin being consolidated */ in malloc_consolidate() local
4739 fb = &fastbin (av, 0); in malloc_consolidate()
4741 p = atomic_exchange_acq (fb, NULL); in malloc_consolidate()
4750 if ((&fastbin (av, idx)) != fb) in malloc_consolidate()
4804 } while (fb++ != maxfb); in malloc_consolidate()