Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/LD/
DLayout.cpp523 SectListTy sect_list; in sortSectionOrder() local
526 sect_list.push_back(std::make_pair( in sortSectionOrder()
531 for (unsigned int i = 1; i < sect_list.size(); ++i) { in sortSectionOrder()
532 SectOrder order = sect_list[i]; in sortSectionOrder()
534 while (j >= 0 && sect_list[j].second > order.second) { in sortSectionOrder()
535 sect_list[j + 1] = sect_list[j]; in sortSectionOrder()
538 sect_list[j + 1] = order; in sortSectionOrder()
543 for (size_t index = 0; index < sect_list.size(); ++index) { in sortSectionOrder()
544 m_SectionOrder.push_back(sect_list[index].first); in sortSectionOrder()