• Home
  • Raw
  • Download

Lines Matching refs:run_test

159 run_test(void *dst, uint32_t dst_len, void *src, uint32_t src_len, uint32_t pad)  in run_test()  function
179 run_test(NULL, 0, NULL, 0, 0x00); in main()
180 run_test(NULL, 0, NULL, 0, 0xFF); in main()
181 run_test(NULL, 0, NULL, 5, 0x00); in main()
182 run_test(NULL, 0, NULL, 5, 0xFF); in main()
183 run_test(NULL, 0, buf, sizeof buf, 0x00); in main()
184 run_test(NULL, 0, buf, sizeof buf, 0xFF); in main()
188 run_test(&byte, 1, NULL, 0, 'a'); in main()
190 run_test(buf, sizeof buf, NULL, 0, 'a'); in main()
197 run_test(&byte, 1, &byte, 1, 'a'); in main()
200 run_test(buf, i, buf, sizeof buf, 'a'); in main()
206 run_test(buf, sizeof buf, small, sizeof small, 'a'); in main()
212 run_test(small, sizeof small, buf, sizeof buf, 'a'); in main()
217 run_test(buf, sizeof buf, buf + 5, 5, 'x'); in main()
222 run_test(buf, 5, buf + 4, 3, 'x'); in main()
228 run_test(buf + 3, 1, buf, 10, 'x'); // non-destructive in main()
230 run_test(buf + 3, 2, buf, 10, 'x'); // non-destructive in main()
232 run_test(buf + 3, 3, buf, 10, 'x'); // non-destructive in main()
234 run_test(buf + 3, 4, buf, 10, 'x'); // destructive in main()
236 run_test(buf + 3, 5, buf, 10, 'x'); // destructive in main()
238 run_test(buf + 3, 6, buf, 10, 'x'); // destructive in main()
240 run_test(buf + 3, 7, buf, 10, 'x'); // destructive in main()
246 run_test(buf + 3, 1, buf, 0, 'x'); // non-destructive in main()
248 run_test(buf + 3, 2, buf, 0, 'x'); // non-destructive in main()
250 run_test(buf + 3, 3, buf, 0, 'x'); // non-destructive in main()
252 run_test(buf + 3, 4, buf, 0, 'x'); // non-destructive in main()
254 run_test(buf + 3, 4, buf, 0, 'x'); // non-destructive in main()
256 run_test(buf + 3, 5, buf, 0, 'x'); // non-destructive in main()
258 run_test(buf + 3, 6, buf, 0, 'x'); // non-destructive in main()
260 run_test(buf + 3, 7, buf, 0, 'x'); // non-destructive in main()
268 run_test(buf + dst_offset, dst_len, buf + src_offset, src_len, 'x'); in main()