Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ADT/
DSmallVector.h716 size_t NumShared = this->size(); in swap() local
717 if (NumShared > RHS.size()) NumShared = RHS.size(); in swap()
718 for (size_type i = 0; i != NumShared; ++i) in swap()
724 this->uninitialized_copy(this->begin()+NumShared, this->end(), RHS.end()); in swap()
726 this->destroy_range(this->begin()+NumShared, this->end()); in swap()
727 this->setEnd(this->begin()+NumShared); in swap()
730 this->uninitialized_copy(RHS.begin()+NumShared, RHS.end(), this->end()); in swap()
732 this->destroy_range(RHS.begin()+NumShared, RHS.end()); in swap()
733 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()