Searched refs:result_candidate_vec (Results 1 – 1 of 1) sorted by relevance
263 std::vector<ResultCandidate> result_candidate_vec; in BatchedNonMaxSuppressionOp() local347 result_candidate_vec.push_back(rc); in BatchedNonMaxSuppressionOp()355 std::sort(result_candidate_vec.begin(), result_candidate_vec.end(), rc_cmp); in BatchedNonMaxSuppressionOp()361 std::min((int)result_candidate_vec.size(), total_size_per_batch); in BatchedNonMaxSuppressionOp()367 std::min(per_batch_size, (int)result_candidate_vec.size()); in BatchedNonMaxSuppressionOp()375 while (curr_total_size > 0 && result_idx < result_candidate_vec.size()) { in BatchedNonMaxSuppressionOp()376 ResultCandidate next_candidate = result_candidate_vec[result_idx++]; in BatchedNonMaxSuppressionOp()