Lines Matching defs:from

248 	struct xfs_dir2_free		*from)
251 struct xfs_dir3_free *from3 = (struct xfs_dir3_free *)from;
261 to->magic = be32_to_cpu(from->hdr.magic);
262 to->firstdb = be32_to_cpu(from->hdr.firstdb);
263 to->nvalid = be32_to_cpu(from->hdr.nvalid);
264 to->nused = be32_to_cpu(from->hdr.nused);
265 to->bests = from->bests;
275 struct xfs_dir3_icfree_hdr *from)
280 ASSERT(from->magic == XFS_DIR3_FREE_MAGIC);
282 to3->hdr.hdr.magic = cpu_to_be32(from->magic);
283 to3->hdr.firstdb = cpu_to_be32(from->firstdb);
284 to3->hdr.nvalid = cpu_to_be32(from->nvalid);
285 to3->hdr.nused = cpu_to_be32(from->nused);
287 ASSERT(from->magic == XFS_DIR2_FREE_MAGIC);
289 to->hdr.magic = cpu_to_be32(from->magic);
290 to->hdr.firstdb = cpu_to_be32(from->firstdb);
291 to->hdr.nvalid = cpu_to_be32(from->nvalid);
292 to->hdr.nused = cpu_to_be32(from->nused);
360 * Log entries from a freespace block.
381 * Log header from a freespace block.
413 __be16 *from; /* pointer to freespace entry */
450 * Copy freespace entries from the leaf block to the new block.
453 from = xfs_dir2_leaf_bests_p(ltp);
454 for (i = n = 0; i < be32_to_cpu(ltp->bestcount); i++, from++) {
455 off = be16_to_cpu(*from);
490 * The other work necessary is done from the caller.
685 * Pull the data block number from the entry.
833 * Pull the data block number from the entry.
945 * Move count leaf entries from source to destination leaf.
997 * Copy the leaf entries from source to destination.
1256 * Remove an entry from a node directory.
1297 * Extract the data block and offset from the entry.
1497 int rval; /* result from path_shift */
1610 * Move all the leaf entries from drop_blk to save_blk.
1649 * Move the entries from drop to the appropriate end of save.
1759 /* Set the freespace block index from the data block number. */
2123 * Remove an entry from a node-format directory.