Lines Matching defs:v
39 #define be_bswap(v, size) (v) argument
40 #define le_bswap(v, size) glue(__builtin_bswap, size)(v) argument
41 #define be_bswap24(v) (v) argument
42 #define le_bswap24(v) bswap24(v) argument
43 #define be_bswaps(v, size) argument
47 #define le_bswap(v, size) (v) argument
48 #define be_bswap24(v) bswap24(v) argument
49 #define le_bswap24(v) (v) argument
50 #define be_bswap(v, size) glue(__builtin_bswap, size)(v) argument
51 #define le_bswaps(v, size) argument
233 static inline void stb_p(void *ptr, uint8_t v) in stb_p()
262 static inline void stw_he_p(void *ptr, uint16_t v) in stw_he_p()
267 static inline void st24_he_p(void *ptr, uint32_t v) in st24_he_p()
279 static inline void stl_he_p(void *ptr, uint32_t v) in stl_he_p()
291 static inline void stq_he_p(void *ptr, uint64_t v) in stq_he_p()
316 static inline void stw_le_p(void *ptr, uint16_t v) in stw_le_p()
321 static inline void st24_le_p(void *ptr, uint32_t v) in st24_le_p()
326 static inline void stl_le_p(void *ptr, uint32_t v) in stl_le_p()
331 static inline void stq_le_p(void *ptr, uint64_t v) in stq_le_p()
356 static inline void stw_be_p(void *ptr, uint16_t v) in stw_be_p()
361 static inline void st24_be_p(void *ptr, uint32_t v) in st24_be_p()
366 static inline void stl_be_p(void *ptr, uint32_t v) in stl_be_p()
371 static inline void stq_be_p(void *ptr, uint64_t v) in stq_be_p()
376 static inline unsigned long leul_to_cpu(unsigned long v) in leul_to_cpu()