Lines Matching refs:idx
151 xfs_attr_leaf_name_remote(xfs_attr_leafblock_t *leafp, int idx);
152 #define XFS_ATTR_LEAF_NAME_REMOTE(leafp,idx) \ argument
153 xfs_attr_leaf_name_remote(leafp,idx)
155 #define XFS_ATTR_LEAF_NAME_REMOTE(leafp,idx) /* remote name struct ptr */ \ argument
157 &((char *)(leafp))[ INT_GET((leafp)->entries[idx].nameidx, ARCH_CONVERT) ])
161 xfs_attr_leaf_name_local(xfs_attr_leafblock_t *leafp, int idx);
162 #define XFS_ATTR_LEAF_NAME_LOCAL(leafp,idx) \ argument
163 xfs_attr_leaf_name_local(leafp,idx)
165 #define XFS_ATTR_LEAF_NAME_LOCAL(leafp,idx) /* local name struct ptr */ \ argument
167 &((char *)(leafp))[ INT_GET((leafp)->entries[idx].nameidx, ARCH_CONVERT) ])
170 char *xfs_attr_leaf_name(xfs_attr_leafblock_t *leafp, int idx);
171 #define XFS_ATTR_LEAF_NAME(leafp,idx) xfs_attr_leaf_name(leafp,idx) argument
173 #define XFS_ATTR_LEAF_NAME(leafp,idx) /* generic name struct ptr */ \ argument
174 (&((char *)(leafp))[ INT_GET((leafp)->entries[idx].nameidx, ARCH_CONVERT) ])