Lines Matching refs:s64
31 static int extBalloc(struct inode *, s64, s64 *, s64 *);
33 static int extBrealloc(struct inode *, s64, s64, s64 *, s64 *);
35 static s64 extRoundDown(s64 nb);
86 extAlloc(struct inode *ip, s64 xlen, s64 pno, xad_t * xp, bool abnr) in extAlloc()
89 s64 nxlen, nxaddr, xoff, hint, xaddr = 0; in extAlloc()
146 dbFree(ip, nxaddr, (s64) nxlen); in extAlloc()
215 int extRealloc(struct inode *ip, s64 nxlen, xad_t * xp, bool abnr) in extRealloc()
218 s64 xaddr, xlen, nxaddr, delta, xoff; in extRealloc()
219 s64 ntail, nextend, ninsert; in extRealloc()
262 dbFree(ip, nxaddr, (s64) nxlen); in extRealloc()
328 dbFree(ip, xaddr, (s64) ninsert); in extRealloc()
364 int extHint(struct inode *ip, s64 offset, xad_t * xp) in extHint()
368 s64 prev; in extHint()
370 s64 xaddr; in extHint()
459 s64 blkno = offsetXAD(xp) >> ip->i_blkbits; in extFill()
509 extBalloc(struct inode *ip, s64 hint, s64 * nblocks, s64 * blkno) in extBalloc()
513 s64 nb, nblks, daddr, max; in extBalloc()
524 max = (s64) 1 << bmp->db_maxfreebud; in extBalloc()
603 s64 blkno, s64 nblks, s64 * newnblks, s64 * newblkno) in extBrealloc()
636 static s64 extRoundDown(s64 nb) in extRoundDown()