Lines Matching refs:PointsOfOpcode
195 SmallVectorImpl<size_t> &PointsOfOpcode = OpcodeToPoints[Opcode]; in clusterizeNaive() local
196 if (PointsOfOpcode.empty()) // If we previously have not seen any points of in clusterizeNaive()
198 PointsOfOpcode.emplace_back(P); in clusterizeNaive()
207 for (ArrayRef<size_t> PointsOfOpcode : in clusterizeNaive()
208 make_filter_range(OpcodeToPoints, [](ArrayRef<size_t> PointsOfOpcode) { in clusterizeNaive() argument
209 return !PointsOfOpcode.empty(); // Ignore opcodes with no points. in clusterizeNaive()
213 Clusters_.size(), /*IsUnstable=*/!areAllNeighbours(PointsOfOpcode))); in clusterizeNaive()
216 for_each(PointsOfOpcode, [this, &CurrentCluster](size_t P) { in clusterizeNaive()
220 CurrentCluster.PointIndices.reserve(PointsOfOpcode.size()); in clusterizeNaive()
221 CurrentCluster.PointIndices.assign(PointsOfOpcode.begin(), in clusterizeNaive()
222 PointsOfOpcode.end()); in clusterizeNaive()
223 assert(CurrentCluster.PointIndices.size() == PointsOfOpcode.size()); in clusterizeNaive()