Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DTimeProfiler.cpp135 std::vector<NameAndCountAndDurationType> SortedTotals; in Write() local
136 SortedTotals.reserve(CountAndTotalPerName.size()); in Write()
138 SortedTotals.emplace_back(E.getKey(), E.getValue()); in Write()
140 llvm::sort(SortedTotals.begin(), SortedTotals.end(), in Write()
145 for (const auto &E : SortedTotals) { in Write()
/external/llvm-project/llvm/lib/Support/
DTimeProfiler.cpp185 std::vector<NameAndCountAndDurationType> SortedTotals; in write() local
186 SortedTotals.reserve(AllCountAndTotalPerName.size()); in write()
188 SortedTotals.emplace_back(std::string(Total.getKey()), Total.getValue()); in write()
190 llvm::sort(SortedTotals, [](const NameAndCountAndDurationType &A, in write()
197 for (const NameAndCountAndDurationType &Total : SortedTotals) { in write()