Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ADT/
DSmallVector.h707 size_t NumShared = this->size(); in swap() local
708 if (NumShared > RHS.size()) NumShared = RHS.size(); in swap()
709 for (size_type i = 0; i != NumShared; ++i) in swap()
715 this->uninitialized_copy(this->begin()+NumShared, this->end(), RHS.end()); in swap()
717 this->destroy_range(this->begin()+NumShared, this->end()); in swap()
718 this->setEnd(this->begin()+NumShared); in swap()
721 this->uninitialized_copy(RHS.begin()+NumShared, RHS.end(), this->end()); in swap()
723 this->destroy_range(RHS.begin()+NumShared, RHS.end()); in swap()
724 RHS.setEnd(RHS.begin()+NumShared); in swap()
/external/llvm/lib/CodeGen/AsmPrinter/
DEHStreamer.cpp98 unsigned NumShared = PrevLPI ? sharedTypeIDs(LPI, PrevLPI) : 0; in computeActionsTable() local
101 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()