Home
last modified time | relevance | path

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

/third_party/grpc/tools/run_tests/performance/
Dmassage_qps_stats_helpers.py19 count_so_far = 0
21 count_so_far += buckets[lower_idx]
22 if count_so_far >= count_below:
24 if count_so_far == count_below:
37 (count_so_far - count_below) / float(buckets[lower_idx]))
/third_party/grpc/src/core/lib/debug/
Dstats.cc102 double count_so_far; in threshold_for_count_below() local
109 count_so_far = 0.0; in threshold_for_count_below()
111 count_so_far += static_cast<double>(bucket_counts[lower_idx]); in threshold_for_count_below()
112 if (count_so_far >= count_below) { in threshold_for_count_below()
116 if (count_so_far == count_below) { in threshold_for_count_below()
131 (count_so_far - count_below) / in threshold_for_count_below()
/third_party/grpc/test/core/util/
Dhistogram.cc148 double count_so_far; in threshold_for_count_below() local
166 count_so_far = 0.0; in threshold_for_count_below()
168 count_so_far += h->buckets[lower_idx]; 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()