Home
last modified time | relevance | path

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

/aosp12/frameworks/native/libs/binder/tests/
H A DbinderThroughputTest.cpp104 static uint64_t max_time_bucket = 50ull * 1000000; variable
105 static uint64_t time_per_bucket = max_time_bucket / num_buckets;
113 uint64_t m_best = max_time_bucket;
116 if (time > max_time_bucket) { in add_time()
324 max_time_bucket = 2 * tot_results.m_worst; in run_main()
325 time_per_bucket = max_time_bucket / num_buckets; in run_main()
383 max_time_bucket = strtoull(argv[i+1], (char **)nullptr, 10) * 1000; in main()
384 time_per_bucket = max_time_bucket / num_buckets; in main()
/aosp12/system/libhwbinder/vts/performance/
H A DBenchmark_throughput.cpp102 static const uint64_t max_time_bucket = 50ull * 1000000; variable
103 static const uint64_t time_per_bucket = max_time_bucket / num_buckets;
107 uint64_t m_best = max_time_bucket;
116 m_buckets[min(time, max_time_bucket - 1) / time_per_bucket] += 1; in add_time()