Lines Matching refs:nxlen
73 s64 nxlen, nxaddr, xoff, hint, xaddr = 0; in extAlloc() local
93 nxlen = lengthXAD(xp); in extAlloc()
103 if (offsetXAD(xp) + nxlen == xoff && in extAlloc()
105 xaddr = hint + nxlen; in extAlloc()
108 hint += (nxlen - 1); in extAlloc()
121 nxlen = xlen; in extAlloc()
122 if ((rc = extBalloc(ip, hint ? hint : INOHINT(ip), &nxlen, &nxaddr))) { in extAlloc()
128 rc = dquot_alloc_block(ip, nxlen); in extAlloc()
130 dbFree(ip, nxaddr, (s64) nxlen); in extAlloc()
143 rc = xtExtend(0, ip, xoff, (int) nxlen, 0); in extAlloc()
145 rc = xtInsert(0, ip, xflag, xoff, (int) nxlen, &nxaddr, 0); in extAlloc()
151 dbFree(ip, nxaddr, nxlen); in extAlloc()
152 dquot_free_block(ip, nxlen); in extAlloc()
159 XADlength(xp, nxlen); in extAlloc()