Lines Matching refs:rec
168 union xfs_btree_rec rec; in xfs_bmbt_update() local
170 xfs_bmbt_disk_set_allf(&rec.bmbt, off, bno, len, state); in xfs_bmbt_update()
171 return xfs_btree_update(cur, &rec); in xfs_bmbt_update()
1571 struct xfs_bmbt_irec *rec, in xfs_bmap_last_extent() argument
1590 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, nextents - 1), rec); in xfs_bmap_last_extent()
1609 struct xfs_bmbt_irec rec; in xfs_bmap_isaeof() local
1614 error = xfs_bmap_last_extent(NULL, bma->ip, whichfork, &rec, in xfs_bmap_isaeof()
1628 bma->aeof = bma->offset >= rec.br_startoff + rec.br_blockcount || in xfs_bmap_isaeof()
1629 (bma->offset >= rec.br_startoff && in xfs_bmap_isaeof()
1630 isnullstartblock(rec.br_startblock)); in xfs_bmap_isaeof()
1645 struct xfs_bmbt_irec rec; in xfs_bmap_last_offset() local
1658 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, &is_empty); in xfs_bmap_last_offset()
1662 *last_block = rec.br_startoff + rec.br_blockcount; in xfs_bmap_last_offset()