Lines Matching refs:u64
100 (u64)((((u64)(x) & 0xff00000000000000ull) >> 56) | \
101 (((u64)(x) & 0x00ff000000000000ull) >> 40) | \
102 (((u64)(x) & 0x0000ff0000000000ull) >> 24) | \
103 (((u64)(x) & 0x000000ff00000000ull) >> 8) | \
104 (((u64)(x) & 0x00000000ff000000ull) << 8) | \
105 (((u64)(x) & 0x0000000000ff0000ull) << 24) | \
106 (((u64)(x) & 0x000000000000ff00ull) << 40) | \
107 (((u64)(x) & 0x00000000000000ffull) << 56))
145 #define __constant_be64_to_cpu(x) __ntfs_bswap_constant_64((u64)(x))
149 #define __constant_cpu_to_be64(x) __ntfs_bswap_constant_64((u64)(x))
163 #define __constant_le64_to_cpu(x) __ntfs_bswap_constant_64((u64)(x))
167 #define __constant_cpu_to_le64(x) __ntfs_bswap_constant_64((u64)(x))
195 #define le64_to_cpu(x) (u64)__le64_to_cpu((u64)(x))
199 #define le64_to_cpup(x) (u64)__le64_to_cpu(*(const u64*)(x))
215 #define cpu_to_le64(x) (u64)__cpu_to_le64((u64)(x))
219 #define cpu_to_le64p(x) (u64)__cpu_to_le64(*(u64*)(x))
235 #define be64_to_cpu(x) (u64)__be64_to_cpu((u64)(x))
239 #define be64_to_cpup(x) (u64)__be64_to_cpu(*(const u64*)(x))
255 #define cpu_to_be64(x) (u64)__cpu_to_be64((u64)(x))
259 #define cpu_to_be64p(x) (u64)__cpu_to_be64(*(u64*)(x))
275 #define const_le64_to_cpu(x) ((u64) __constant_le64_to_cpu(x))
287 #define const_cpu_to_sle64(x) ((sle64) __constant_cpu_to_le64((u64) x))
291 #define const_be64_to_cpu(x) ((u64) __constant_be64_to_cpu(x)))
303 #define const_cpu_to_sbe64(x) ((sbe64) __constant_cpu_to_be64((u64) x))