Lines Matching defs:lep

583 		xfs_dir2_leaf_entry_t	*lep;	/* leaf entry table pointer */
590 lep = &ents[index];
592 memmove(lep + 1, lep,
593 (leafhdr->count - index) * sizeof(*lep));
600 return lep;
678 struct xfs_dir2_leaf_entry *lep; /* leaf entry table pointer */
725 for (use_block = -1, lep = &ents[index];
726 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
727 index++, lep++) {
728 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
730 i = xfs_dir2_dataptr_to_db(args->geo, be32_to_cpu(lep->address));
946 lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale,
952 lep->hashval = cpu_to_be32(args->hashval);
953 lep->address = cpu_to_be32(
1220 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1240 lep = &leafhdr.ents[index];
1247 xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address)));
1280 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1310 for (lep = &leafhdr->ents[index];
1312 be32_to_cpu(lep->hashval) == args->hashval;
1313 lep++, index++) {
1317 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
1323 be32_to_cpu(lep->address));
1345 be32_to_cpu(lep->address)));
1413 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1439 lep = &leafhdr.ents[index];
1440 db = xfs_dir2_dataptr_to_db(geo, be32_to_cpu(lep->address));
1442 xfs_dir2_dataptr_to_off(geo, be32_to_cpu(lep->address)));
1467 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
1557 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1574 lep = &leafhdr.ents[index];
1580 xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address)));
1608 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1618 for (lep = leafhdr.ents, low = 0, high = leafhdr.count - 1,
1622 if ((hash = be32_to_cpu(lep[mid].hashval)) == hashwant)
1633 while (mid > 0 && be32_to_cpu(lep[mid - 1].hashval) == hashwant) {