Searched refs:partition_iter (Results 1 – 1 of 1) sorted by relevance
271 const auto partition_iter = working.begin() + partition_point; in nth_element() local272 std::nth_element(working.begin(), partition_iter, working.end()); in nth_element()275 if (partition_iter == working.end()) in nth_element()281 const uint8_t nth = *partition_iter; in nth_element()282 if (!std::all_of(working.begin(), partition_iter, [=](uint8_t v) { return v <= nth; })) in nth_element()284 if (!std::all_of(partition_iter, working.end(), [=](uint8_t v) { return v >= nth; })) in nth_element()