Searched refs:MinNonEmpty (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DSmallPtrSet.cpp256 unsigned MinNonEmpty = std::min(this->NumNonEmpty, RHS.NumNonEmpty); local
257 std::swap_ranges(this->SmallArray, this->SmallArray + MinNonEmpty,
259 if (this->NumNonEmpty > MinNonEmpty) {
260 std::copy(this->SmallArray + MinNonEmpty,
262 RHS.SmallArray + MinNonEmpty);
264 std::copy(RHS.SmallArray + MinNonEmpty, RHS.SmallArray + RHS.NumNonEmpty,
265 this->SmallArray + MinNonEmpty);

Completed in 42 milliseconds