Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DSmallVector.h950 size_t NumShared = this->size(); in swap() local
951 if (NumShared > RHS.size()) NumShared = RHS.size(); in swap()
952 for (size_type i = 0; i != NumShared; ++i) in swap()
958 this->uninitialized_copy(this->begin()+NumShared, this->end(), RHS.end()); in swap()
960 this->destroy_range(this->begin()+NumShared, this->end()); in swap()
961 this->set_size(NumShared); in swap()
964 this->uninitialized_copy(RHS.begin()+NumShared, RHS.end(), this->end()); in swap()
966 this->destroy_range(RHS.begin()+NumShared, RHS.end()); in swap()
967 RHS.set_size(NumShared); in swap()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp99 unsigned NumShared = PrevLPI ? sharedTypeIDs(LPI, PrevLPI) : 0; in computeActionsTable() local
102 if (NumShared < TypeIds.size()) { in computeActionsTable()
107 if (NumShared) { in computeActionsTable()
114 for (unsigned j = NumShared; j != SizePrevIds; ++j) { in computeActionsTable()
123 for (unsigned J = NumShared, M = TypeIds.size(); J != M; ++J) { in computeActionsTable()