Searched refs:maxPossible (Results 1 – 1 of 1) sorted by relevance
43 readonly double maxPossible; field in Grpc.IntegrationTesting.Histogram52 public Histogram(double resolution, double maxPossible) in Histogram() argument55 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()