Lines Matching defs:c
78 #define INT8_C(c) (c)
79 #define INT16_C(c) (c)
80 #define INT32_C(c) (c)
83 #define INT64_C(c) __CONCAT__(c,l)
87 #define INT64_C(c) __CONCAT__(c,ll)
92 #define UINT8_C(c) __CONCAT__(c,u)
94 #define UINT16_C(c) __CONCAT__(c,u)
96 #define UINT32_C(c) __CONCAT__(c,u)
99 #define UINT64_C(c) __CONCAT__(c,ul)
103 #define UINT64_C(c) __CONCAT__(c,ull)
109 #define INTMAX_C(c) __CONCAT__(c,l)
111 #define UINTMAX_C(c) __CONCAT__(c,ul)
115 #define INTMAX_C(c) __CONCAT__(c,ll)
117 #define UINTMAX_C(c) __CONCAT__(c,ull)
119 #define INTMAX_C(c) (c)
120 #define UINTMAX_C(c) (c)