HomeSort by relevance Sort by last modified time
    Searched refs:test_runs (Results 1 - 8 of 8) sorted by null

  /system/extras/tests/pagingtest/
pagingtest.h 16 int mmap_test(int test_runs, unsigned long long alloc_size);
17 int pageinout_test(int test_runs, bool cache, unsigned long long file_size);
18 int thrashing_test(int test_runs, bool cache);
pagingtest.c 15 #define TEST_RUNS 10
143 int test_runs = 0; local
146 //arguments: <program> [test_runs [alloc_size [file_size]]]
148 test_runs = atoi(argv[1]);
150 if (test_runs <= 0) {
151 test_runs = TEST_RUNS;
166 rc = mmap_test(test_runs, alloc_size);
170 rc = pageinout_test(test_runs, true, file_size);
174 rc = pageinout_test(test_runs, false, file_size)
    [all...]
pageinout_test.c 12 int pageinout_test(int test_runs, bool cache, unsigned long long file_size) {
56 for (i = 0; i < test_runs; i++) {
89 (file_size * test_runs * USEC_PER_SEC) /
92 (file_size * test_runs * USEC_PER_SEC) /
mmap_test.c 10 int mmap_test(int test_runs, unsigned long long alloc_size) {
23 for (i = 0; i < test_runs; i++) {
thrashing_test.c 14 int thrashing_test(int test_runs, bool cache) {
59 for (int i = 0; i < test_runs; i++) {
73 (filesize * ARRAY_SIZE(fds) * test_runs * USEC_PER_SEC) /
  /external/autotest/tko/
nightly.py 47 # get test_runs run #s for 1 test on 1 kernel and some platforms
68 def all_tested_platforms(test_runs):
69 # extract list of all tested platforms from test_runs table
71 for kernel in test_runs:
72 platforms.update(set(test_runs[kernel].keys()))
76 def divide_twoway_testruns(test_runs, platform):
80 for kernel in test_runs:
82 for testrunx in test_runs[kernel].get(platform, []):
102 def collect_scaled_scores(metric, test_runs, regressed_platforms, relative):
108 for kernel in sorted(test_runs.keys())
    [all...]
  /external/toolchain-utils/automation/clients/report/dejagnu/
main.py 101 test_runs = [DejaGnuTestRun.FromFile(filename)
104 html = report.Generate(test_runs, manifests)
report.py 59 def Generate(test_runs, manifests):
63 test_runs: DejaGnuTestRun objects list.
71 for test_run_id, test_run in enumerate(test_runs):
113 ctx = template.Context({'test_runs': tmpl_args})

Completed in 368 milliseconds