Lines Matching defs:TEST_CASTABLE_TO_TYPE

1088 #define TEST_CASTABLE_TO_TYPE(arg1, arg2, pass)	do {	\
1096 TEST_CASTABLE_TO_TYPE(16, u8, true);
1097 TEST_CASTABLE_TO_TYPE(16, u16, true);
1098 TEST_CASTABLE_TO_TYPE(16, u32, true);
1099 TEST_CASTABLE_TO_TYPE(16, s8, true);
1100 TEST_CASTABLE_TO_TYPE(16, s16, true);
1101 TEST_CASTABLE_TO_TYPE(16, s32, true);
1102 TEST_CASTABLE_TO_TYPE(-16, s8, true);
1103 TEST_CASTABLE_TO_TYPE(-16, s16, true);
1104 TEST_CASTABLE_TO_TYPE(-16, s32, true);
1106 TEST_CASTABLE_TO_TYPE(16, u64, true);
1107 TEST_CASTABLE_TO_TYPE(-16, s64, true);
1115 TEST_CASTABLE_TO_TYPE(type_max(u ## width), u ## width, true); \
1116 TEST_CASTABLE_TO_TYPE(type_min(u ## width), u ## width, true); \
1117 TEST_CASTABLE_TO_TYPE(type_max(u ## width), u ## width ## var, true); \
1118 TEST_CASTABLE_TO_TYPE(type_min(u ## width), u ## width ## var, true); \
1119 TEST_CASTABLE_TO_TYPE(type_max(s ## width), s ## width, true); \
1120 TEST_CASTABLE_TO_TYPE(type_min(s ## width), s ## width, true); \
1121 TEST_CASTABLE_TO_TYPE(type_max(s ## width), s ## width ## var, true); \
1122 TEST_CASTABLE_TO_TYPE(type_min(u ## width), s ## width ## var, true); \
1124 TEST_CASTABLE_TO_TYPE(type_max(u ## width), s ## width, false); \
1125 TEST_CASTABLE_TO_TYPE(type_max(u ## width), s ## width ## var, false); \
1126 TEST_CASTABLE_TO_TYPE(type_min(s ## width), u ## width, false); \
1127 TEST_CASTABLE_TO_TYPE(type_min(s ## width), u ## width ## var, false); \
1129 TEST_CASTABLE_TO_TYPE(s ## width ## var, u ## width, false); \
1130 TEST_CASTABLE_TO_TYPE(u ## width ## var, s ## width, false); \
1140 TEST_CASTABLE_TO_TYPE(U ## width ## _MAX, u ## width, true); \
1141 TEST_CASTABLE_TO_TYPE(U ## width ## _MAX, u ## width ## var, true); \
1142 TEST_CASTABLE_TO_TYPE(S ## width ## _MIN, s ## width, true); \
1143 TEST_CASTABLE_TO_TYPE(S ## width ## _MIN, s ## width ## var, true); \
1145 TEST_CASTABLE_TO_TYPE((unsigned long)U ## width ## _MAX + 1, u ## width, false); \
1146 TEST_CASTABLE_TO_TYPE((unsigned long)U ## width ## _MAX + 1, u ## width ## var, false); \
1147 TEST_CASTABLE_TO_TYPE((signed long)S ## width ## _MIN - 1, s ## width, false); \
1148 TEST_CASTABLE_TO_TYPE((signed long)S ## width ## _MIN - 1, s ## width ## var, false); \
1150 TEST_CASTABLE_TO_TYPE(big, u ## width, false); \
1151 TEST_CASTABLE_TO_TYPE(big, u ## width ## var, false); \
1152 TEST_CASTABLE_TO_TYPE(small, s ## width, false); \
1153 TEST_CASTABLE_TO_TYPE(small, s ## width ## var, false); \
1172 #undef TEST_CASTABLE_TO_TYPE