Lines Matching refs:TEST_CASTABLE_TO_TYPE

1030 #define TEST_CASTABLE_TO_TYPE(arg1, arg2, pass)	do {	\  in castable_to_type_test()  macro
1038 TEST_CASTABLE_TO_TYPE(16, u8, true); in castable_to_type_test()
1039 TEST_CASTABLE_TO_TYPE(16, u16, true); in castable_to_type_test()
1040 TEST_CASTABLE_TO_TYPE(16, u32, true); in castable_to_type_test()
1041 TEST_CASTABLE_TO_TYPE(16, s8, true); in castable_to_type_test()
1042 TEST_CASTABLE_TO_TYPE(16, s16, true); in castable_to_type_test()
1043 TEST_CASTABLE_TO_TYPE(16, s32, true); in castable_to_type_test()
1044 TEST_CASTABLE_TO_TYPE(-16, s8, true); in castable_to_type_test()
1045 TEST_CASTABLE_TO_TYPE(-16, s16, true); in castable_to_type_test()
1046 TEST_CASTABLE_TO_TYPE(-16, s32, true); in castable_to_type_test()
1048 TEST_CASTABLE_TO_TYPE(16, u64, true); in castable_to_type_test()
1049 TEST_CASTABLE_TO_TYPE(-16, s64, true); in castable_to_type_test()
1057 TEST_CASTABLE_TO_TYPE(type_max(u ## width), u ## width, true); \ in castable_to_type_test()
1058 TEST_CASTABLE_TO_TYPE(type_min(u ## width), u ## width, true); \ in castable_to_type_test()
1059 TEST_CASTABLE_TO_TYPE(type_max(u ## width), u ## width ## var, true); \ in castable_to_type_test()
1060 TEST_CASTABLE_TO_TYPE(type_min(u ## width), u ## width ## var, true); \ in castable_to_type_test()
1061 TEST_CASTABLE_TO_TYPE(type_max(s ## width), s ## width, true); \ in castable_to_type_test()
1062 TEST_CASTABLE_TO_TYPE(type_min(s ## width), s ## width, true); \ in castable_to_type_test()
1063 TEST_CASTABLE_TO_TYPE(type_max(s ## width), s ## width ## var, true); \ in castable_to_type_test()
1064 TEST_CASTABLE_TO_TYPE(type_min(u ## width), s ## width ## var, true); \ in castable_to_type_test()
1066 TEST_CASTABLE_TO_TYPE(type_max(u ## width), s ## width, false); \ in castable_to_type_test()
1067 TEST_CASTABLE_TO_TYPE(type_max(u ## width), s ## width ## var, false); \ in castable_to_type_test()
1068 TEST_CASTABLE_TO_TYPE(type_min(s ## width), u ## width, false); \ in castable_to_type_test()
1069 TEST_CASTABLE_TO_TYPE(type_min(s ## width), u ## width ## var, false); \ in castable_to_type_test()
1071 TEST_CASTABLE_TO_TYPE(s ## width ## var, u ## width, false); \ in castable_to_type_test()
1072 TEST_CASTABLE_TO_TYPE(u ## width ## var, s ## width, false); \ in castable_to_type_test()
1082 TEST_CASTABLE_TO_TYPE(U ## width ## _MAX, u ## width, true); \ in castable_to_type_test()
1083 TEST_CASTABLE_TO_TYPE(U ## width ## _MAX, u ## width ## var, true); \ in castable_to_type_test()
1084 TEST_CASTABLE_TO_TYPE(S ## width ## _MIN, s ## width, true); \ in castable_to_type_test()
1085 TEST_CASTABLE_TO_TYPE(S ## width ## _MIN, s ## width ## var, true); \ in castable_to_type_test()
1087 TEST_CASTABLE_TO_TYPE((unsigned long)U ## width ## _MAX + 1, u ## width, false); \ in castable_to_type_test()
1088 TEST_CASTABLE_TO_TYPE((unsigned long)U ## width ## _MAX + 1, u ## width ## var, false); \ in castable_to_type_test()
1089 TEST_CASTABLE_TO_TYPE((signed long)S ## width ## _MIN - 1, s ## width, false); \ in castable_to_type_test()
1090 TEST_CASTABLE_TO_TYPE((signed long)S ## width ## _MIN - 1, s ## width ## var, false); \ in castable_to_type_test()
1092 TEST_CASTABLE_TO_TYPE(big, u ## width, false); \ in castable_to_type_test()
1093 TEST_CASTABLE_TO_TYPE(big, u ## width ## var, false); \ in castable_to_type_test()
1094 TEST_CASTABLE_TO_TYPE(small, s ## width, false); \ in castable_to_type_test()
1095 TEST_CASTABLE_TO_TYPE(small, s ## width ## var, false); \ in castable_to_type_test()
1114 #undef TEST_CASTABLE_TO_TYPE in castable_to_type_test()