Searched refs:pairs (Results 1 – 6 of 6) sorted by relevance
/art/test/439-swap-double/ |
D | info.txt | 2 the presence of register pairs (in this case, doubles on ARM).
|
/art/tools/dexanalyze/ |
D | dexanalyze_bytecode.cc | 172 std::vector<std::pair<size_t, std::vector<uint8_t>>> pairs; in Dump() local 177 pairs.emplace_back((pair.second - 1) * (pair.first.size() - 1), pair.first); in Dump() 180 std::sort(pairs.rbegin(), pairs.rend()); in Dump() 184 for (size_t i = 0; i < kMaxMacros && i < pairs.size(); ++i) { in Dump() 185 top_instructions_savings += pairs[i].first; in Dump() 202 for (size_t i = 0; i < kMaxMacros && i < pairs.size(); ++i) { in Dump() 203 auto bytes = pairs[i].second; in Dump() 207 os << Percent(pairs[i].first, total_size) << " " in Dump() 208 << Instruction::Name(static_cast<Instruction::Code>(pairs[i].second[0])) in Dump()
|
D | dexanalyze_strings.cc | 570 std::vector<std::pair<std::string, size_t>> pairs; // (prefixes_.begin(), prefixes_.end()); in Dump() local 572 std::sort(pairs.begin(), pairs.end()); in Dump() 573 for (const auto& pair : pairs) { in Dump()
|
/art/tools/jvmti-agents/ti-alloc-sample/ |
D | README.md | 53 Lines starting with a + are key, value pairs. So, for instance, key 2 stands for 61 Lines starting with = are stack traces (STs), and are again key, value pairs. In the
|
/art/runtime/verifier/ |
D | register_line.cc | 150 for (auto& pairs : reg_to_lock_depths_) { in Dump() local 152 pairs.first, in Dump() 153 static_cast<uint64_t>(pairs.second)); in Dump()
|
/art/runtime/mirror/ |
D | dex_cache-inl.h | 342 inline void VisitDexCachePairs(std::atomic<DexCachePair<T>>* pairs, in VisitDexCachePairs() argument 347 DexCachePair<T> source = pairs[i].load(std::memory_order_relaxed); in VisitDexCachePairs() 356 pairs[i].store(source, std::memory_order_relaxed); in VisitDexCachePairs()
|