Symbol: TEST_CASTABLE_TO_TYPE
lib/tests/overflow_kunit.c
1095
TEST_CASTABLE_TO_TYPE(16, u8, true);
lib/tests/overflow_kunit.c
1096
TEST_CASTABLE_TO_TYPE(16, u16, true);
lib/tests/overflow_kunit.c
1097
TEST_CASTABLE_TO_TYPE(16, u32, true);
lib/tests/overflow_kunit.c
1098
TEST_CASTABLE_TO_TYPE(16, s8, true);
lib/tests/overflow_kunit.c
1099
TEST_CASTABLE_TO_TYPE(16, s16, true);
lib/tests/overflow_kunit.c
1100
TEST_CASTABLE_TO_TYPE(16, s32, true);
lib/tests/overflow_kunit.c
1101
TEST_CASTABLE_TO_TYPE(-16, s8, true);
lib/tests/overflow_kunit.c
1102
TEST_CASTABLE_TO_TYPE(-16, s16, true);
lib/tests/overflow_kunit.c
1103
TEST_CASTABLE_TO_TYPE(-16, s32, true);
lib/tests/overflow_kunit.c
1105
TEST_CASTABLE_TO_TYPE(16, u64, true);
lib/tests/overflow_kunit.c
1106
TEST_CASTABLE_TO_TYPE(-16, s64, true);
lib/tests/overflow_kunit.c
1114
TEST_CASTABLE_TO_TYPE(type_max(u ## width), u ## width, true); \
lib/tests/overflow_kunit.c
1115
TEST_CASTABLE_TO_TYPE(type_min(u ## width), u ## width, true); \
lib/tests/overflow_kunit.c
1116
TEST_CASTABLE_TO_TYPE(type_max(u ## width), u ## width ## var, true); \
lib/tests/overflow_kunit.c
1117
TEST_CASTABLE_TO_TYPE(type_min(u ## width), u ## width ## var, true); \
lib/tests/overflow_kunit.c
1118
TEST_CASTABLE_TO_TYPE(type_max(s ## width), s ## width, true); \
lib/tests/overflow_kunit.c
1119
TEST_CASTABLE_TO_TYPE(type_min(s ## width), s ## width, true); \
lib/tests/overflow_kunit.c
1120
TEST_CASTABLE_TO_TYPE(type_max(s ## width), s ## width ## var, true); \
lib/tests/overflow_kunit.c
1121
TEST_CASTABLE_TO_TYPE(type_min(u ## width), s ## width ## var, true); \
lib/tests/overflow_kunit.c
1123
TEST_CASTABLE_TO_TYPE(type_max(u ## width), s ## width, false); \
lib/tests/overflow_kunit.c
1124
TEST_CASTABLE_TO_TYPE(type_max(u ## width), s ## width ## var, false); \
lib/tests/overflow_kunit.c
1125
TEST_CASTABLE_TO_TYPE(type_min(s ## width), u ## width, false); \
lib/tests/overflow_kunit.c
1126
TEST_CASTABLE_TO_TYPE(type_min(s ## width), u ## width ## var, false); \
lib/tests/overflow_kunit.c
1128
TEST_CASTABLE_TO_TYPE(s ## width ## var, u ## width, false); \
lib/tests/overflow_kunit.c
1129
TEST_CASTABLE_TO_TYPE(u ## width ## var, s ## width, false); \
lib/tests/overflow_kunit.c
1139
TEST_CASTABLE_TO_TYPE(U ## width ## _MAX, u ## width, true); \
lib/tests/overflow_kunit.c
1140
TEST_CASTABLE_TO_TYPE(U ## width ## _MAX, u ## width ## var, true); \
lib/tests/overflow_kunit.c
1141
TEST_CASTABLE_TO_TYPE(S ## width ## _MIN, s ## width, true); \
lib/tests/overflow_kunit.c
1142
TEST_CASTABLE_TO_TYPE(S ## width ## _MIN, s ## width ## var, true); \
lib/tests/overflow_kunit.c
1144
TEST_CASTABLE_TO_TYPE((unsigned long)U ## width ## _MAX + 1, u ## width, false); \
lib/tests/overflow_kunit.c
1145
TEST_CASTABLE_TO_TYPE((unsigned long)U ## width ## _MAX + 1, u ## width ## var, false); \
lib/tests/overflow_kunit.c
1146
TEST_CASTABLE_TO_TYPE((signed long)S ## width ## _MIN - 1, s ## width, false); \
lib/tests/overflow_kunit.c
1147
TEST_CASTABLE_TO_TYPE((signed long)S ## width ## _MIN - 1, s ## width ## var, false); \
lib/tests/overflow_kunit.c
1149
TEST_CASTABLE_TO_TYPE(big, u ## width, false); \
lib/tests/overflow_kunit.c
1150
TEST_CASTABLE_TO_TYPE(big, u ## width ## var, false); \
lib/tests/overflow_kunit.c
1151
TEST_CASTABLE_TO_TYPE(small, s ## width, false); \
lib/tests/overflow_kunit.c
1152
TEST_CASTABLE_TO_TYPE(small, s ## width ## var, false); \