Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DSmallVector.h694 size_t NumShared = this->size(); in swap() local
695 if (NumShared > RHS.size()) NumShared = RHS.size(); in swap()
696 for (size_type i = 0; i != NumShared; ++i) in swap()
702 this->uninitialized_copy(this->begin()+NumShared, this->end(), RHS.end()); in swap()
704 this->destroy_range(this->begin()+NumShared, this->end()); in swap()
705 this->set_size(NumShared); in swap()
708 this->uninitialized_copy(RHS.begin()+NumShared, RHS.end(), this->end()); in swap()
710 this->destroy_range(RHS.begin()+NumShared, RHS.end()); in swap()
711 RHS.set_size(NumShared); in swap()
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp109 unsigned NumShared = PrevLPI ? sharedTypeIDs(LPI, PrevLPI) : 0; in computeActionsTable() local
112 if (NumShared < TypeIds.size()) { in computeActionsTable()
117 if (NumShared) { in computeActionsTable()
124 for (unsigned j = NumShared; j != SizePrevIds; ++j) { in computeActionsTable()
133 for (unsigned J = NumShared, M = TypeIds.size(); J != M; ++J) { in computeActionsTable()