Home
last modified time | relevance | path

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

/external/grpc-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]))
/external/rust/crates/grpcio-sys/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]))
/external/grpc-grpc/src/core/lib/debug/
Dstats.cc97 double count_so_far; in threshold_for_count_below() local
104 count_so_far = 0.0; in threshold_for_count_below()
106 count_so_far += static_cast<double>(bucket_counts[lower_idx]); in threshold_for_count_below()
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()
/external/rust/crates/grpcio-sys/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()
/external/grpc-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()
/external/bcc/tools/old/
Dmemleak.py266 count_so_far = 0 variable
276 count_so_far += 1
277 if num_prints is not None and count_so_far >= num_prints:
/external/bcc/tools/
Dmemleak.py508 count_so_far = 0 variable
522 count_so_far += 1
523 if num_prints is not None and count_so_far >= num_prints:
Dargdist.py688 count_so_far = 0
699 count_so_far += 1
701 count_so_far >= self.args.count: