/external/tensorflow/tensorflow/core/lib/histogram/ |
D | histogram_test.cc | 78 TEST(Histogram, Percentile) { in TEST() argument 96 EXPECT_EQ(h.Percentile(0), -1.0); // -1.0 = histo.min_ in TEST() 97 EXPECT_EQ(h.Percentile(25), 1.5); // 1.5 = remap(25, 10, 40, 1, 2) in TEST() 98 EXPECT_EQ(h.Percentile(50), 2.25); // 2.25 = remap(50, 40, 80, 2, 3) in TEST() 99 EXPECT_EQ(h.Percentile(75), 2.875); // 2.875 = remap(75, 40, 80, 2, 3) in TEST() 100 EXPECT_EQ(h.Percentile(90), 3.45); // 3.45 = remap(90, 80, 100, 3, 3.9) in TEST() 101 EXPECT_EQ(h.Percentile(100), 3.9); // 3.9 = histo.max_ in TEST() 146 EXPECT_EQ(h.Percentile(40.0), tsh.Percentile(40.0)); in TEST()
|
D | histogram.h | 68 double Percentile(double p) const; 126 double Percentile(double p) const;
|
D | histogram.cc | 116 double Histogram::Median() const { return Percentile(50.0); } in Median() 126 double Histogram::Percentile(double p) const { in Percentile() function in tensorflow::histogram::Histogram 258 double ThreadSafeHistogram::Percentile(double p) const { in Percentile() function in tensorflow::histogram::ThreadSafeHistogram 260 return histogram_.Percentile(p); in Percentile()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/ |
D | Percentile.java | 82 public class Percentile extends AbstractUnivariateStatistic implements Serializable { class 104 public Percentile() { in Percentile() method in Percentile 114 public Percentile(final double p) { in Percentile() method in Percentile 125 public Percentile(Percentile original) { in Percentile() method in Percentile 475 public Percentile copy() { in copy() 476 Percentile result = new Percentile(); in copy() 489 public static void copy(Percentile source, Percentile dest) { in copy()
|
D | Median.java | 33 public class Median extends Percentile implements Serializable {
|
/external/llvm/lib/Analysis/ |
D | ProfileSummaryInfo.cpp | 41 uint64_t Percentile) { in getMinCountForPercentile() argument 42 auto Compare = [](const ProfileSummaryEntry &Entry, uint64_t Percentile) { in getMinCountForPercentile() argument 43 return Entry.Cutoff < Percentile; in getMinCountForPercentile() 45 auto It = std::lower_bound(DS.begin(), DS.end(), Percentile, Compare); in getMinCountForPercentile()
|
/external/chromium-trace/catapult/common/lab/ |
D | commits.py | 35 def Percentile(data, percentile): function 97 percentile = Percentile(commit_durations, p)
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
D | ConsoleOutput.java | 37 import org.apache.commons.math.stat.descriptive.rank.Percentile; 119 Percentile percentile = new Percentile(); in processTrial()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/ |
D | DescriptiveStatistics.java | 32 import org.apache.commons.math.stat.descriptive.rank.Percentile; 97 private UnivariateStatistic percentileImpl = new Percentile(); 395 if (percentileImpl instanceof Percentile) { in getPercentile() 396 ((Percentile) percentileImpl).setQuantile(p); in getPercentile()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/ |
D | StatUtils.java | 28 import org.apache.commons.math.stat.descriptive.rank.Percentile; 67 private static final Percentile PERCENTILE = new Percentile();
|
/external/llvm-project/llvm/lib/ProfileData/ |
D | ProfileSummaryBuilder.cpp | 36 uint64_t Percentile) { in getEntryForPercentile() argument 38 return Entry.Cutoff < Percentile; in getEntryForPercentile()
|
/external/grpc-grpc/test/cpp/qps/ |
D | driver.cc | 126 result->mutable_summary()->set_latency_50(histogram.Percentile(50)); in postprocess_scenario_result() 127 result->mutable_summary()->set_latency_90(histogram.Percentile(90)); in postprocess_scenario_result() 128 result->mutable_summary()->set_latency_95(histogram.Percentile(95)); in postprocess_scenario_result() 129 result->mutable_summary()->set_latency_99(histogram.Percentile(99)); in postprocess_scenario_result() 130 result->mutable_summary()->set_latency_999(histogram.Percentile(99.9)); in postprocess_scenario_result()
|
D | histogram.h | 46 double Percentile(double pctile) const { in Percentile() function
|
D | client.h | 338 histogram_per_interval_.Percentile(50) / 1e3); in UpdateHistogram()
|
/external/llvm-project/llvm/include/llvm/ProfileData/ |
D | ProfileCommon.h | 68 getEntryForPercentile(SummaryEntryVector &DS, uint64_t Percentile);
|
/external/tensorflow/tensorflow/core/kernels/batching_util/ |
D | basic_batch_scheduler_benchmark_test.cc | 284 << task_latency_millis_histogram_.Percentile(99.9) << "ms" in RunBenchmark() 286 << "99% batch size: " << batch_size_histogram_.Percentile(99) in RunBenchmark()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ProfileSummaryInfo.cpp | 71 uint64_t Percentile) { in getEntryForPercentile() argument 73 return Entry.Cutoff < Percentile; in getEntryForPercentile()
|
/external/tensorflow/tensorflow/core/kernels/data/experimental/ |
D | choose_fastest_dataset_op.cc | 348 double best_percentile = histograms_[0].Percentile(kPercentile); in SelectFastestInputIndex() 352 double percentile = histograms_[i].Percentile(kPercentile); in SelectFastestInputIndex()
|
D | choose_fastest_branch_dataset_op.cc | 483 double best_percentile = histograms_[0].Percentile(kPercentile); in SelectFastestInputIndex() 487 double percentile = histograms_[i].Percentile(kPercentile); in SelectFastestInputIndex()
|
/external/libtextclassifier/abseil-cpp/absl/container/internal/ |
D | raw_hash_set_test.cc | 910 double PercentileRatio(double Percentile = 0.95) const { in PercentileRatio() 912 auto mid = r.begin() + static_cast<size_t>(r.size() * Percentile); in PercentileRatio() 935 size_t PercentileProbe(double Percentile = 0.99) const { in PercentileProbe() 938 if (Percentile > p) { in PercentileProbe() 939 Percentile -= p; in PercentileProbe()
|
/external/openscreen/third_party/abseil/src/absl/container/internal/ |
D | raw_hash_set_test.cc | 911 double PercentileRatio(double Percentile = 0.95) const { in PercentileRatio() 913 auto mid = r.begin() + static_cast<size_t>(r.size() * Percentile); in PercentileRatio() 936 size_t PercentileProbe(double Percentile = 0.99) const { in PercentileProbe() 939 if (Percentile > p) { in PercentileProbe() 940 Percentile -= p; in PercentileProbe()
|
/external/webrtc/third_party/abseil-cpp/absl/container/internal/ |
D | raw_hash_set_test.cc | 909 double PercentileRatio(double Percentile = 0.95) const { in PercentileRatio() 911 auto mid = r.begin() + static_cast<size_t>(r.size() * Percentile); in PercentileRatio() 934 size_t PercentileProbe(double Percentile = 0.99) const { in PercentileProbe() 937 if (Percentile > p) { in PercentileProbe() 938 Percentile -= p; in PercentileProbe()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/ |
D | raw_hash_set_test.cc | 910 double PercentileRatio(double Percentile = 0.95) const { in PercentileRatio() 912 auto mid = r.begin() + static_cast<size_t>(r.size() * Percentile); in PercentileRatio() 935 size_t PercentileProbe(double Percentile = 0.99) const { in PercentileProbe() 938 if (Percentile > p) { in PercentileProbe() 939 Percentile -= p; in PercentileProbe()
|
/external/abseil-cpp/absl/container/internal/ |
D | raw_hash_set_test.cc | 909 double PercentileRatio(double Percentile = 0.95) const { in PercentileRatio() 911 auto mid = r.begin() + static_cast<size_t>(r.size() * Percentile); in PercentileRatio() 934 size_t PercentileProbe(double Percentile = 0.99) const { in PercentileProbe() 937 if (Percentile > p) { in PercentileProbe() 938 Percentile -= p; in PercentileProbe()
|
/external/angle/third_party/abseil-cpp/absl/container/internal/ |
D | raw_hash_set_test.cc | 1075 double PercentileRatio(double Percentile = 0.95) const { in PercentileRatio() 1077 auto mid = r.begin() + static_cast<size_t>(r.size() * Percentile); in PercentileRatio() 1100 size_t PercentileProbe(double Percentile = 0.99) const { in PercentileProbe() 1103 if (Percentile > p) { in PercentileProbe() 1104 Percentile -= p; in PercentileProbe()
|