Home
last modified time | relevance | path

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

/aosp12/art/runtime/
H A Dreference_table.cc262 Table sorted_entries; in Dump() local
265 sorted_entries.push_back(root); in Dump()
268 if (sorted_entries.empty()) { in Dump()
271 std::sort(sorted_entries.begin(), sorted_entries.end(), GcRootComparator()); in Dump()
298 for (GcRoot<mirror::Object>& root : sorted_entries) { in Dump()
/aosp12/frameworks/base/tools/aapt2/format/binary/
H A DTableFlattener.cpp123 std::vector<const Style::Entry*> sorted_entries; in Visit() local
125 sorted_entries.emplace_back(&entry); in Visit()
128 std::sort(sorted_entries.begin(), sorted_entries.end(), cmp_style_entries); in Visit()
130 for (const Style::Entry* entry : sorted_entries) { in Visit()
545 const std::vector<ResourceTableEntryView>& sorted_entries, in FlattenTypeSpec() argument
552 if (sorted_entries.empty()) { in FlattenTypeSpec()
560 const size_t num_entries = sorted_entries.back().id.value() + 1; in FlattenTypeSpec()
568 for (const ResourceTableEntryView& entry : sorted_entries) { in FlattenTypeSpec()
/aosp12/system/logging/logd/
H A DLogStatistics.cpp569 std::array<const PidEntry*, maximum_sorted_entries> sorted_entries; in format() local
570 stat.pidSystemTable[id].MaxEntries(uid, 0, sorted_pids, sorted_entries); in format()
576 const PidEntry* entry = sorted_entries[index]; in format()
774 std::array<const TEntry*, maximum_sorted_entries> sorted_entries; in FormatTable() local
775 table.MaxEntries(uid, pid, sorted_keys, sorted_entries); in FormatTable()
778 const TEntry* entry = sorted_entries[index]; in FormatTable()
782 if (entry->getSizes() <= (sorted_entries[0]->getSizes() / 100)) { in FormatTable()