Searched refs:abp (Results 1 – 2 of 2) sorted by relevance
152 #define AB_ALLEAF(abp) ((alleaf_t *)((caddr_t)(abp) + sizeof(alblk_t))) argument153 #define AB_ALNODE(abp) ((alnode_t *)((caddr_t)(abp) + sizeof(alblk_t))) argument154 #define AB_FREEALP(abp) ((alleaf_t *)((caddr_t)(abp) + (abp)->ab_freeoff)) argument155 #define AB_FREEANP(abp) ((alnode_t *)((caddr_t)(abp) + (abp)->ab_freeoff)) argument156 #define AB_LASTALP(abp) (AB_ALLEAF(abp) + (abp)->ab_busycnt - 1) argument157 #define AB_LASTANP(abp) (AB_ALNODE(abp) + (abp)->ab_busycnt - 1) argument158 #define AB_ADDNREC(abp, sz, n) { \ argument159 (abp)->ab_busycnt += (n); \160 (abp)->ab_freecnt -= (n); \161 (abp)->ab_freeoff += (n) * (sz); \[all …]
66 alblk_t * abp; in hpfs_hpbmap() local74 abp = &hp->h_fn.fn_ab; in hpfs_hpbmap()79 if (abp->ab_flag & AB_NODES) { in hpfs_hpbmap()80 for (i=0; i<abp->ab_busycnt; i++, anp++) { in hpfs_hpbmap()106 abp = &asp->as_ab; in hpfs_hpbmap()114 for (i=0; i<abp->ab_busycnt; i++, alp++) { in hpfs_hpbmap()213 alblk_t *abp; in hpfs_splitalsec() local223 abp = &asp->as_ab; in hpfs_splitalsec()225 n1 = (abp->ab_busycnt + 1) / 2; in hpfs_splitalsec()226 n2 = (abp->ab_busycnt - n1); in hpfs_splitalsec()[all …]