• Home
  • Raw
  • Download

Lines Matching refs:width

1109 #define TEST_CASTABLE_TO_TYPE_VAR(width)	do {				\  in castable_to_type_test()  argument
1110 u ## width u ## width ## var = 0; \ in castable_to_type_test()
1111 s ## width s ## width ## var = 0; \ in castable_to_type_test()
1114 TEST_CASTABLE_TO_TYPE(type_max(u ## width), u ## width, true); \ in castable_to_type_test()
1115 TEST_CASTABLE_TO_TYPE(type_min(u ## width), u ## width, true); \ in castable_to_type_test()
1116 TEST_CASTABLE_TO_TYPE(type_max(u ## width), u ## width ## var, true); \ in castable_to_type_test()
1117 TEST_CASTABLE_TO_TYPE(type_min(u ## width), u ## width ## var, true); \ in castable_to_type_test()
1118 TEST_CASTABLE_TO_TYPE(type_max(s ## width), s ## width, true); \ in castable_to_type_test()
1119 TEST_CASTABLE_TO_TYPE(type_min(s ## width), s ## width, true); \ in castable_to_type_test()
1120 TEST_CASTABLE_TO_TYPE(type_max(s ## width), s ## width ## var, true); \ in castable_to_type_test()
1121 TEST_CASTABLE_TO_TYPE(type_min(u ## width), s ## width ## var, true); \ in castable_to_type_test()
1123 TEST_CASTABLE_TO_TYPE(type_max(u ## width), s ## width, false); \ in castable_to_type_test()
1124 TEST_CASTABLE_TO_TYPE(type_max(u ## width), s ## width ## var, false); \ in castable_to_type_test()
1125 TEST_CASTABLE_TO_TYPE(type_min(s ## width), u ## width, false); \ in castable_to_type_test()
1126 TEST_CASTABLE_TO_TYPE(type_min(s ## width), u ## width ## var, false); \ in castable_to_type_test()
1128 TEST_CASTABLE_TO_TYPE(s ## width ## var, u ## width, false); \ in castable_to_type_test()
1129 TEST_CASTABLE_TO_TYPE(u ## width ## var, s ## width, false); \ in castable_to_type_test()
1132 #define TEST_CASTABLE_TO_TYPE_RANGE(width) do { \ in castable_to_type_test() argument
1133 unsigned long big = U ## width ## _MAX; \ in castable_to_type_test()
1134 signed long small = S ## width ## _MIN; \ in castable_to_type_test()
1135 u ## width u ## width ## var = 0; \ in castable_to_type_test()
1136 s ## width s ## width ## var = 0; \ in castable_to_type_test()
1139 TEST_CASTABLE_TO_TYPE(U ## width ## _MAX, u ## width, true); \ in castable_to_type_test()
1140 TEST_CASTABLE_TO_TYPE(U ## width ## _MAX, u ## width ## var, true); \ in castable_to_type_test()
1141 TEST_CASTABLE_TO_TYPE(S ## width ## _MIN, s ## width, true); \ in castable_to_type_test()
1142 TEST_CASTABLE_TO_TYPE(S ## width ## _MIN, s ## width ## var, true); \ in castable_to_type_test()
1144 TEST_CASTABLE_TO_TYPE((unsigned long)U ## width ## _MAX + 1, u ## width, false); \ in castable_to_type_test()
1145 TEST_CASTABLE_TO_TYPE((unsigned long)U ## width ## _MAX + 1, u ## width ## var, false); \ in castable_to_type_test()
1146 TEST_CASTABLE_TO_TYPE((signed long)S ## width ## _MIN - 1, s ## width, false); \ in castable_to_type_test()
1147 TEST_CASTABLE_TO_TYPE((signed long)S ## width ## _MIN - 1, s ## width ## var, false); \ in castable_to_type_test()
1149 TEST_CASTABLE_TO_TYPE(big, u ## width, false); \ in castable_to_type_test()
1150 TEST_CASTABLE_TO_TYPE(big, u ## width ## var, false); \ in castable_to_type_test()
1151 TEST_CASTABLE_TO_TYPE(small, s ## width, false); \ in castable_to_type_test()
1152 TEST_CASTABLE_TO_TYPE(small, s ## width ## var, false); \ in castable_to_type_test()