Lines Matching refs:found_second
101 unsigned found_second = affinities.size();
108 found_second = i;
111 if (found_first == affinities.size() && found_second == affinities.size()) {
113 } else if (found_first < affinities.size() && found_second == affinities.size()) {
115 } else if (found_second < affinities.size() && found_first == affinities.size()) {
116 affinities[found_second].push_back(first);
117 } else if (found_first != found_second) {
120 affinities[found_second].begin(),
121 affinities[found_second].end());
122 affinities.erase(std::next(affinities.begin(), found_second));
124 assert(found_first == found_second);