Lines Matching defs:x
34 #define ___constant_swab32(x) \ argument
43 #define __constant_cpu_to_le32(x) ___constant_swab32((x)) argument
44 #define __constant_cpu_to_be32(x) (x) argument
45 #define __be32_to_cpu(x) (x) argument
46 #define __cpu_to_be32(x) (x) argument
47 #define __cpu_to_le32(x) (ext2fs_swab32((x))) argument
48 #define __le32_to_cpu(x) (ext2fs_swab32((x))) argument
50 #define __constant_cpu_to_le32(x) (x) argument
51 #define __constant_cpu_to_be32(x) ___constant_swab32((x)) argument
52 #define __be32_to_cpu(x) (ext2fs_swab32((x))) argument
53 #define __cpu_to_be32(x) (ext2fs_swab32((x))) argument
54 #define __cpu_to_le32(x) (x) argument
55 #define __le32_to_cpu(x) (x) argument
59 #define likely(x) __builtin_expect(!!(x), 1) argument
60 #define unlikely(x) __builtin_expect(!!(x), 0) argument
62 #define likely(x) (x) argument
63 #define unlikely(x) (x) argument