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()
1572 struct xfs_bmbt_irec *rec, in xfs_bmap_last_extent() argument
1591 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, nextents - 1), rec); in xfs_bmap_last_extent()
1610 struct xfs_bmbt_irec rec; in xfs_bmap_isaeof() local
1615 error = xfs_bmap_last_extent(NULL, bma->ip, whichfork, &rec, in xfs_bmap_isaeof()
1629 bma->aeof = bma->offset >= rec.br_startoff + rec.br_blockcount || in xfs_bmap_isaeof()
1630 (bma->offset >= rec.br_startoff && in xfs_bmap_isaeof()
1631 isnullstartblock(rec.br_startblock)); in xfs_bmap_isaeof()
1646 struct xfs_bmbt_irec rec; in xfs_bmap_last_offset() local
1659 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, &is_empty); in xfs_bmap_last_offset()
1663 *last_block = rec.br_startoff + rec.br_blockcount; in xfs_bmap_last_offset()