Home | History | Annotate | Download | only in byteorder

Lines Matching refs:__u64

18 #define __constant_cpu_to_le64(x) ((__force __le64)(__u64)(x))
19 #define __constant_le64_to_cpu(x) ((__force __u64)(__le64)(x))
25 #define __constant_be64_to_cpu(x) ___constant_swab64((__force __u64)(__be64)(x))
30 #define __cpu_to_le64(x) ((__force __le64)(__u64)(x))
31 #define __le64_to_cpu(x) ((__force __u64)(__le64)(x))
37 #define __be64_to_cpu(x) __swab64((__force __u64)(__be64)(x))
43 static inline __le64 __cpu_to_le64p(const __u64 *p)
47 static inline __u64 __le64_to_cpup(const __le64 *p)
49 return (__force __u64)*p;
67 static inline __be64 __cpu_to_be64p(const __u64 *p)
71 static inline __u64 __be64_to_cpup(const __be64 *p)
73 return __swab64p((__u64 *)p);