Lines Matching refs:ifree
663 int32 ifree; /* Count of free indices. Used only in audits */ member
707 mwbmap_p->ifree = (int32)items_max; in bcm_mwbmap_init()
827 mwbmap_p->ifree--; /* decrement system wide free count */ in bcm_mwbmap_alloc()
828 MWBMAP_ASSERT(mwbmap_p->ifree >= 0); in bcm_mwbmap_alloc()
833 mwbmap_p->ifree)); in bcm_mwbmap_alloc()
841 ASSERT(mwbmap_p->ifree == 0); in bcm_mwbmap_alloc()
865 mwbmap_p->ifree--; /* update free count */ in bcm_mwbmap_force()
866 ASSERT(mwbmap_p->ifree >= 0); in bcm_mwbmap_force()
870 mwbmap_p->ifree)); in bcm_mwbmap_force()
919 mwbmap_p->ifree++; /* update free count */ in bcm_mwbmap_free()
920 ASSERT(mwbmap_p->ifree <= mwbmap_p->total); in bcm_mwbmap_free()
924 mwbmap_p->ifree)); in bcm_mwbmap_free()
971 ASSERT(mwbmap_p->ifree >= 0); in bcm_mwbmap_free_cnt()
973 return (uint32)mwbmap_p->ifree; in bcm_mwbmap_free_cnt()
1006 mwbmap_p->wmaps, mwbmap_p->imaps, mwbmap_p->ifree, mwbmap_p->total); in bcm_mwbmap_show()
1055 ASSERT((int)free_cnt == mwbmap_p->ifree); in bcm_mwbmap_audit()