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

/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) {
119 m_buckets[min(time, max_time_bucket-1) / time_per_bucket] += 1;
322 // sets max_time_bucket to 2 * m_worst from the training round.
324 max_time_bucket = 2 * tot_results.m_worst;
325 time_per_bucket = max_time_bucket / num_buckets;
383 max_time_bucket = strtoull(argv[i+1], (char **)NULL, 10) * 1000;

Completed in 69 milliseconds