Home | History | Annotate | Download | only in libelf

Lines Matching refs:Bytes

67 #define INLINE2(Bytes, FName, TName) \
68 INLINE3 (Bytes, FName, TName)
69 #define INLINE3(Bytes, FName, TName) \
75 word##Bytes##_t *tdest = (word##Bytes##_t *) dest; \
76 const word##Bytes##_t *tptr = (const word##Bytes##_t *) ptr; \
79 *tdest++ = LEN##Bytes##_SWAP (tptr); \
85 word##Bytes##_t *tdest = (word##Bytes##_t *) dest + n; \
86 const word##Bytes##_t *tptr = (const word##Bytes##_t *) ptr + n; \
90 *--tdest = LEN##Bytes##_SWAP (tptr); \
97 *((word##Bytes##_t *) dest) = \
98 LEN##Bytes##_SWAP ((((word##Bytes##_t *) ptr))); \