Lines Matching refs:stbl

576 	s8 *stbl;  in dtSearch()  local
629 stbl = DT_GETSTBL(p); in dtSearch()
637 if (stbl[index] < 0) { in dtSearch()
645 ciCompare(&ciKey, p, stbl[index], in dtSearch()
650 cmp = dtCompare(&ciKey, p, stbl[index]); in dtSearch()
663 ((struct ldtentry *) & p->slot[stbl[index]])->inumber); in dtSearch()
784 pxd = (pxd_t *) & p->slot[stbl[index]]; in dtSearch()
1343 u8 *stbl; in dtSplitPage() local
1510 stbl = (u8 *) & sp->slot[sp->header.stblindex]; in dtSplitPage()
1517 si = stbl[nxt]; in dtSplitPage()
1581 stbl = DT_GETSTBL(rp); in dtSplitPage()
1583 ldtentry = (struct ldtentry *) & rp->slot[stbl[n]]; in dtSplitPage()
1661 u8 *stbl; in dtExtendPage() local
1705 stbl = DT_GETSTBL(sp); in dtExtendPage()
1708 (struct ldtentry *) & sp->slot[stbl[n]]; in dtExtendPage()
1883 s8 *stbl; in dtSplitRoot() local
1954 stbl = (s8 *) & rp->slot[DTROOTMAXSLOT]; in dtSplitRoot()
1955 memcpy(stbl, sp->header.stbl, sp->header.nextindex); in dtSplitRoot()
1996 stbl = DT_GETSTBL(rp); in dtSplitRoot()
1998 ldtentry = (struct ldtentry *) & rp->slot[stbl[n]]; in dtSplitRoot()
2047 stbl = sp->header.stbl; in dtSplitRoot()
2048 stbl[0] = DTENTRYSTART; in dtSplitRoot()
2092 u8 *stbl; in dtDelete() local
2114 stbl = DT_GETSTBL(p); in dtDelete()
2115 ldtentry = (struct ldtentry *) & p->slot[stbl[index]]; in dtDelete()
2131 stbl = DT_GETSTBL(np); in dtDelete()
2134 slot[stbl[0]]; in dtDelete()
2142 (struct ldtentry *) & p->slot[stbl[index + 1]]; in dtDelete()
2204 stbl = DT_GETSTBL(p); in dtDelete()
2207 (struct ldtentry *) & p->slot[stbl[i]]; in dtDelete()
2626 s8 *stbl; in add_missing_indices() local
2648 stbl = DT_GETSTBL(p); in add_missing_indices()
2650 d = (struct ldtentry *) &p->slot[stbl[i]]; in add_missing_indices()
2657 lv->offset = stbl[i]; in add_missing_indices()
2718 s8 *stbl; in jfs_readdir() local
2892 stbl = DT_GETSTBL(p); in jfs_readdir()
2895 if (stbl[i] < 0 || stbl[i] > 127) { in jfs_readdir()
2897 i, stbl[i], (long)ip->i_ino, (long long)bn); in jfs_readdir()
2903 d = (struct ldtentry *) & p->slot[stbl[i]]; in jfs_readdir()
3055 s8 *stbl; in dtReadFirst() local
3097 stbl = DT_GETSTBL(p); in dtReadFirst()
3099 if (stbl[0] < 0 || stbl[0] > 127) { in dtReadFirst()
3105 xd = (pxd_t *) & p->slot[stbl[0]]; in dtReadFirst()
3141 s8 *stbl; in dtReadNext() local
3241 stbl = DT_GETSTBL(p); in dtReadNext()
3242 xd = (pxd_t *) & p->slot[stbl[pn]]; in dtReadNext()
3558 s8 *stbl; in dtGetKey() local
3567 stbl = DT_GETSTBL(p); in dtGetKey()
3568 si = stbl[i]; in dtGetKey()
3627 s8 *stbl; in dtInsertEntry() local
3737 stbl = DT_GETSTBL(p); in dtInsertEntry()
3740 memmove(stbl + index + 1, stbl + index, nextindex - index); in dtInsertEntry()
3751 lh = (struct ldtentry *) & (p->slot[stbl[n]]); in dtInsertEntry()
3761 stbl[index] = hsi; in dtInsertEntry()
3980 s8 *stbl; in dtDeleteEntry() local
3988 stbl = DT_GETSTBL(p); in dtDeleteEntry()
3989 fsi = stbl[fi]; in dtDeleteEntry()
4055 memmove(&stbl[fi], &stbl[fi + 1], si - fi - 1); in dtDeleteEntry()
4075 s8 *stbl; in dtTruncateEntry() local
4083 stbl = DT_GETSTBL(p); in dtTruncateEntry()
4084 tsi = stbl[ti]; in dtTruncateEntry()
4244 s8 *stbl; in dtModify() local
4267 stbl = DT_GETSTBL(p); in dtModify()
4268 entry_si = stbl[index]; in dtModify()