Home
last modified time | relevance | path

Searched refs:kHistogram (Results 1 – 2 of 2) sorted by relevance

/third_party/grpc/test/core/debug/
Dstats_test.cc87 const int kHistogram = GetParam(); in TEST_P() local
90 auto run = [kHistogram](const std::vector<int>& test_values, in TEST_P()
98 grpc_stats_inc_histogram[kHistogram](j); in TEST_P()
104 .histograms[grpc_stats_histo_start[kHistogram] + expected_bucket], in TEST_P()
106 << "\nhistogram:" << kHistogram in TEST_P()
113 grpc_stats_histo_bucket_boundaries[kHistogram] in TEST_P()
114 [grpc_stats_histo_buckets[kHistogram] - in TEST_P()
117 int expected_bucket = FindExpectedBucket(kHistogram, j); in TEST_P()
126 FindExpectedBucket(kHistogram, j + 1000) == expected_bucket && in TEST_P()
127 FindExpectedBucket(kHistogram, j - 1000) == expected_bucket) { in TEST_P()
/third_party/grpc/src/cpp/util/
Dcore_stats.cc62 case Metric::kHistogram: in ProtoToCoreStats()