Home
last modified time | relevance | path

Searched refs:max_tests (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libswresample/tests/
Dswresample.c241 int max_tests = FF_ARRAY_ELEMS(remaining_tests); in main() local
259 if(num_tests<= 0 || num_tests>max_tests) in main()
260 num_tests = max_tests; in main()
266 for(i=0; i<max_tests; i++) in main()
272 r = (seed * (uint64_t)(max_tests - test)) >>32; in main()
273 FFSWAP(int, remaining_tests[r], remaining_tests[max_tests - test - 1]); in main()
275 qsort(remaining_tests + max_tests - num_tests, num_tests, sizeof(remaining_tests[0]), cmp); in main()
280 unsigned vector= remaining_tests[max_tests - test - 1]; in main()
/third_party/python/Lib/test/
Dbisect_cmd.py127 % (args.max_tests, args.max_iter))
134 while len(tests) > args.max_tests and iteration <= args.max_iter:
169 if len(tests) <= args.max_tests: