Lines Matching refs:entry_s
2437 struct xfs_attr_leaf_entry *entry_s; in xfs_attr3_leaf_moveents() local
2456 ASSERT(ichdr_s->firstused >= (ichdr_s->count * sizeof(*entry_s)) in xfs_attr3_leaf_moveents()
2473 entry_s = &xfs_attr3_leaf_entryp(leaf_d)[start_d]; in xfs_attr3_leaf_moveents()
2475 memmove(entry_d, entry_s, tmp); in xfs_attr3_leaf_moveents()
2482 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s]; in xfs_attr3_leaf_moveents()
2485 for (i = 0; i < count; entry_s++, entry_d++, desti++, i++) { in xfs_attr3_leaf_moveents()
2486 ASSERT(be16_to_cpu(entry_s->nameidx) >= ichdr_s->firstused); in xfs_attr3_leaf_moveents()
2494 if (entry_s->flags & XFS_ATTR_INCOMPLETE) { /* skip partials? */ in xfs_attr3_leaf_moveents()
2506 entry_d->hashval = entry_s->hashval; in xfs_attr3_leaf_moveents()
2508 entry_d->flags = entry_s->flags; in xfs_attr3_leaf_moveents()
2513 ASSERT(be16_to_cpu(entry_s->nameidx) + tmp in xfs_attr3_leaf_moveents()
2533 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s]; in xfs_attr3_leaf_moveents()
2534 ASSERT(((char *)entry_s + tmp) <= in xfs_attr3_leaf_moveents()
2536 memset(entry_s, 0, tmp); in xfs_attr3_leaf_moveents()
2543 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s + count]; in xfs_attr3_leaf_moveents()
2545 memmove(entry_d, entry_s, tmp); in xfs_attr3_leaf_moveents()
2548 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[ichdr_s->count]; in xfs_attr3_leaf_moveents()
2549 ASSERT(((char *)entry_s + tmp) <= in xfs_attr3_leaf_moveents()
2551 memset(entry_s, 0, tmp); in xfs_attr3_leaf_moveents()