Lines Matching refs:xp
70 extAlloc(struct inode *ip, s64 xlen, s64 pno, xad_t * xp, bool abnr) in extAlloc() argument
91 if ((hint = addressXAD(xp))) { in extAlloc()
93 nxlen = lengthXAD(xp); in extAlloc()
103 if (offsetXAD(xp) + nxlen == xoff && in extAlloc()
104 abnr == ((xp->flag & XAD_NOTRECORDED) ? true : false)) in extAlloc()
158 XADaddress(xp, nxaddr); in extAlloc()
159 XADlength(xp, nxlen); in extAlloc()
160 XADoffset(xp, xoff); in extAlloc()
161 xp->flag = xflag; in extAlloc()
192 int extHint(struct inode *ip, s64 offset, xad_t * xp) in extHint() argument
203 XADaddress(xp, 0); in extHint()
222 XADaddress(xp, xaddr); in extHint()
223 XADlength(xp, xlen); in extHint()
224 XADoffset(xp, prev); in extHint()
229 xp->flag = xflag & XAD_NOTRECORDED; in extHint()
252 int extRecord(struct inode *ip, xad_t * xp) in extRecord() argument
261 rc = xtUpdate(0, ip, xp); in extRecord()