Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/
DClustering.cpp37 const auto &QMeasurements = Points_[Q].Measurements; in rangeQuery()
38 for (size_t P = 0, NumPoints = Points_.size(); P < NumPoints; ++P) { in rangeQuery()
41 const auto &PMeasurements = Points_[P].Measurements; in rangeQuery()
65 : Points_(Points), EpsilonSquared_(EpsilonSquared), in InstructionBenchmarkClustering()
69 ClusterIdForPoint_.resize(Points_.size()); in validateAndSetup()
73 for (size_t P = 0, NumPoints = Points_.size(); P < NumPoints; ++P) { in validateAndSetup()
74 const auto &Point = Points_[P]; in validateAndSetup()
104 for (size_t P = 0, NumPoints = Points_.size(); P < NumPoints; ++P) { in dbScan()
149 for (size_t P = 0, NumPoints = Points_.size(); P < NumPoints; ++P) { in dbScan()
DClustering.h75 const std::vector<InstructionBenchmark> &getPoints() const { return Points_; } in getPoints()
101 const std::vector<InstructionBenchmark> &Points_; variable