Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/
DClustering.cpp69 ClusterIdForPoint_.resize(Points_.size()); in validateAndSetup()
76 ClusterIdForPoint_[P] = ClusterId::error(); in validateAndSetup()
105 if (!ClusterIdForPoint_[P].isUndef()) in dbScan()
111 ClusterIdForPoint_[P] = ClusterId::noise(); in dbScan()
118 ClusterIdForPoint_[P] = CurrentCluster.Id; /* Label initial point */ in dbScan()
128 if (ClusterIdForPoint_[Q].isNoise()) { in dbScan()
130 ClusterIdForPoint_[Q] = CurrentCluster.Id; in dbScan()
134 if (!ClusterIdForPoint_[Q].isUndef()) { in dbScan()
138 ClusterIdForPoint_[Q] = CurrentCluster.Id; in dbScan()
150 if (ClusterIdForPoint_[P].isNoise()) { in dbScan()
DClustering.h72 return ClusterIdForPoint_[P]; in getClusterIdForPoint()
105 std::vector<ClusterId> ClusterIdForPoint_; variable