Lines Matching full:xp
57 * xp - pointer to an xad. on entry, xad describes an
70 extAlloc(struct inode *ip, s64 xlen, s64 pno, xad_t * xp, bool abnr) in extAlloc() argument
96 if ((hint = addressXAD(xp))) { in extAlloc()
98 nxlen = lengthXAD(xp); in extAlloc()
108 if (offsetXAD(xp) + nxlen == xoff && in extAlloc()
109 abnr == ((xp->flag & XAD_NOTRECORDED) ? true : false)) in extAlloc()
163 XADaddress(xp, nxaddr); in extAlloc()
164 XADlength(xp, nxlen); in extAlloc()
165 XADoffset(xp, xoff); in extAlloc()
166 xp->flag = xflag; in extAlloc()
190 * xp - pointer to the xad that is to be filled in with
197 int extHint(struct inode *ip, s64 offset, xad_t * xp) in extHint() argument
208 XADaddress(xp, 0); in extHint()
227 XADaddress(xp, xaddr); in extHint()
228 XADlength(xp, xlen); in extHint()
229 XADoffset(xp, prev); in extHint()
234 xp->flag = xflag & XAD_NOTRECORDED; in extHint()
257 int extRecord(struct inode *ip, xad_t * xp) in extRecord() argument
271 rc = xtUpdate(0, ip, xp); in extRecord()