Searched refs:CHECK_MAX (Results 1 - 2 of 2) sorted by relevance

/fuchsia/zircon/system/utest/int-types/
H A Dint-types.c113 #define CHECK_MAX(type, TYPE) static_assert(IS_SIGNED(type) ? CHECK_MAX_SIGNED(type, TYPE) : CHECK_MAX_UNSIGNED(type, TYPE), ""); macro
115 CHECK_MAX(int8_t, INT8);
116 CHECK_MAX(int16_t, INT16);
117 CHECK_MAX(int32_t, INT32);
118 CHECK_MAX(int64_t, INT64);
119 CHECK_MAX(uint8_t, UINT8);
120 CHECK_MAX(uint16_t, UINT16);
121 CHECK_MAX(uint32_t, UINT32);
122 CHECK_MAX(uint64_t, UINT64);
124 CHECK_MAX(int_least8_
[all...]
H A Dint-types.cpp111 #define CHECK_MAX(type, TYPE) static_assert(fbl::is_signed<type>::value ? CHECK_MAX_SIGNED(type, TYPE) : CHECK_MAX_UNSIGNED(type, TYPE), ""); macro
113 CHECK_MAX(int8_t, INT8);
114 CHECK_MAX(int16_t, INT16);
115 CHECK_MAX(int32_t, INT32);
116 CHECK_MAX(int64_t, INT64);
117 CHECK_MAX(uint8_t, UINT8);
118 CHECK_MAX(uint16_t, UINT16);
119 CHECK_MAX(uint32_t, UINT32);
120 CHECK_MAX(uint64_t, UINT64);
122 CHECK_MAX(int_least8_
[all...]

Completed in 26 milliseconds