Home
last modified time | relevance | path

Searched refs:NumShared (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DSmallVector.h986 size_t NumShared = this->size(); in swap() local
987 if (NumShared > RHS.size()) NumShared = RHS.size(); in swap()
988 for (size_type i = 0; i != NumShared; ++i) in swap()
994 this->uninitialized_copy(this->begin()+NumShared, this->end(), RHS.end()); in swap()
996 this->destroy_range(this->begin()+NumShared, this->end()); in swap()
997 this->set_size(NumShared); in swap()
1000 this->uninitialized_copy(RHS.begin()+NumShared, RHS.end(), this->end()); in swap()
1002 this->destroy_range(RHS.begin()+NumShared, RHS.end()); in swap()
1003 RHS.set_size(NumShared); in swap()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp98 unsigned NumShared = PrevLPI ? sharedTypeIDs(LPI, PrevLPI) : 0; in computeActionsTable() local
101 if (NumShared < TypeIds.size()) { in computeActionsTable()
106 if (NumShared) { in computeActionsTable()
113 for (unsigned j = NumShared; j != SizePrevIds; ++j) { in computeActionsTable()
122 for (unsigned J = NumShared, M = TypeIds.size(); J != M; ++J) { in computeActionsTable()