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

  /frameworks/native/libs/binder/tests/
binderThroughputTest.cpp 104 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;
384 time_per_bucket = max_time_bucket / num_buckets
    [all...]
  /system/libhwbinder/vts/performance/
Benchmark_throughput.cpp 101 static const uint64_t max_time_bucket = 50ull * 1000000; variable
102 static const uint64_t time_per_bucket = max_time_bucket / num_buckets;
106 uint64_t m_best = max_time_bucket;
115 m_buckets[min(time, max_time_bucket - 1) / time_per_bucket] += 1;

Completed in 215 milliseconds