Home
last modified time | relevance | path

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

/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DHistogram.cs43 readonly double maxPossible; field in Grpc.IntegrationTesting.Histogram
52 public Histogram(double resolution, double maxPossible) in Histogram() argument
55 GrpcPreconditions.CheckArgument(maxPossible > 0); in Histogram()
56 this.maxPossible = maxPossible; in Histogram()
59 this.buckets = new uint[FindBucket(maxPossible) + 1]; in Histogram()
102 value = Math.Min(value, this.maxPossible); in FindBucket()