Searched defs:sorted (Results 1 - 2 of 2) sorted by relevance

/art/tools/dmtracedump/
H A Dtracedump.cc1215 * the sorted entries.
1227 TimedMethod* sorted = new TimedMethod[num_entries]; local
1229 memcpy(&sorted[ii], pTimed, sizeof(TimedMethod));
1230 qsort(sorted, num_entries, sizeof(TimedMethod), compareTimedMethod);
1233 for (ii = 0; ii < num_entries - 1; ++ii) sorted[ii].next = &sorted[ii + 1];
1234 sorted[num_entries - 1].next = nullptr;
1236 return sorted;
1257 TimedMethod* sorted = sortTimedMethodList(list, &num); local
1259 for (TimedMethod* pTimed = sorted; pTime
[all...]
/art/runtime/gc/
H A Dheap.cc508 // Compute heap capacity. Continuous spaces are sorted in order of Begin().
510 // Relies on the spaces being sorted.
1078 // Ensure that spaces remain sorted in increasing order of start address.
1507 bool search_live_stack, bool sorted) {
1541 for (size_t i = 0; i < (sorted ? 1 : 5); ++i) {
1546 if (sorted) {
1556 if (sorted) {
3084 // Since we sorted the allocation stack content, need to revoke all
3213 // Since we sorted the allocation stack content, need to revoke all
1506 IsLiveObjectLocked(mirror::Object* obj, bool search_allocation_stack, bool search_live_stack, bool sorted) argument

Completed in 98 milliseconds