Home | History | Annotate | Download | only in s390x

Lines Matching refs:run_test

141 run_test(void *addr1, uint32_t len1, void *addr2, uint32_t len2, uint32_t pad)
159 run_test(NULL, 0, NULL, 0, 0x00);
160 run_test(NULL, 0, NULL, 0, 0xff);
166 run_test(&byte1, 1, &byte2, 1, 0x00); // first operand low
167 run_test(&byte1, 1, &byte1, 1, 0x00); // equal
168 run_test(&byte2, 1, &byte1, 1, 0x00); // first operand high
169 run_test(&byte1, 1, &byte2, 1, 0xFF); // first operand low
170 run_test(&byte1, 1, &byte1, 1, 0xFF); // equal
171 run_test(&byte2, 1, &byte1, 1, 0xFF); // first operand high
176 run_test(NULL, 0, &byte, 1, 10); // equal
177 run_test(NULL, 0, &byte, 1, 9); // first operand low
178 run_test(NULL, 0, &byte, 1, 11); // first operand high
180 run_test(&byte, 1, NULL, 0, 10); // equal
181 run_test(&byte, 1, NULL, 0, 9); // first operand high
182 run_test(&byte, 1, NULL, 0, 11); // first operand low
187 run_test(&byte, 1, NULL, 0, 0xFF); // first operand low
189 run_test(&byte, 1, NULL, 0, 0xFF); // equal
194 run_test(buf1, 4, NULL, 0, 'y'); // equal
195 run_test(buf1, 4, NULL, 0, 'x'); // greater
196 run_test(buf1, 4, NULL, 0, 'z'); // less
204 run_test(x, 5, y, 5, 'a'); // first operand low
205 run_test(y, 5, x, 5, 'a'); // first operand high
206 run_test(y, 5, z, 5, 'q'); // equal
215 run_test(x, 5, y, 5, 'a'); // first operand low
216 run_test(z, 5, z, 5, 'a'); // first operand high
225 run_test(x, 5, y, 7, 0); // first operand low
226 run_test(y, 7, x, 5, 0); // first operand high
227 run_test(x, 5, y, 7, 'f'); // equal
228 run_test(y, 7, x, 5, 'f'); // equal
237 run_test(x, 5, y, 7, 0); // first operand low
238 run_test(y, 7, x, 5, 0); // first operand high
239 run_test(x, 5, y, 7, 'f'); // first operand low
240 run_test(y, 7, x, 5, 'f'); // first operand high