Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallVector.h996 size_t NumShared = this->size(); in swap() local
997 if (NumShared > RHS.size()) NumShared = RHS.size(); in swap()
998 for (size_type i = 0; i != NumShared; ++i) in swap()
1004 this->uninitialized_copy(this->begin()+NumShared, this->end(), RHS.end()); in swap()
1006 this->destroy_range(this->begin()+NumShared, this->end()); in swap()
1007 this->set_size(NumShared); in swap()
1010 this->uninitialized_copy(RHS.begin()+NumShared, RHS.end(), this->end()); in swap()
1012 this->destroy_range(RHS.begin()+NumShared, RHS.end()); in swap()
1013 RHS.set_size(NumShared); in swap()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp97 unsigned NumShared = PrevLPI ? sharedTypeIDs(LPI, PrevLPI) : 0; in computeActionsTable() local
100 if (NumShared < TypeIds.size()) { in computeActionsTable()
105 if (NumShared) { in computeActionsTable()
112 for (unsigned j = NumShared; j != SizePrevIds; ++j) { in computeActionsTable()
121 for (unsigned J = NumShared, M = TypeIds.size(); J != M; ++J) { in computeActionsTable()