Home
last modified time | relevance | path

Searched refs:count_below (Results 1 – 3 of 3) sorted by relevance

/external/grpc-grpc/tools/run_tests/performance/
Dmassage_qps_stats_helpers.py18 def _threshold_for_count_below(buckets, boundaries, count_below): argument
22 if count_so_far >= count_below:
24 if count_so_far == count_below:
37 (count_so_far - count_below) / float(buckets[lower_idx]))
/external/grpc-grpc/test/core/util/
Dhistogram.cc147 static double threshold_for_count_below(grpc_histogram* h, double count_below) { in threshold_for_count_below() argument
158 if (count_below <= 0) { in threshold_for_count_below()
161 if (count_below >= h->count) { in threshold_for_count_below()
169 if (count_so_far >= count_below) { in threshold_for_count_below()
173 if (count_so_far == count_below) { in threshold_for_count_below()
190 (count_so_far - count_below) / in threshold_for_count_below()
/external/grpc-grpc/src/core/lib/debug/
Dstats.cc96 int num_buckets, double count_below) { in threshold_for_count_below() argument
107 if (count_so_far >= count_below) { in threshold_for_count_below()
111 if (count_so_far == count_below) { in threshold_for_count_below()
126 (count_so_far - count_below) / in threshold_for_count_below()