Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dstack_map_stream.cc557 ScopedArenaUnorderedMap<uint32_t, size_t> dedupe(allocator_->Adapter(kArenaAllocStackMapStream)); in PrepareRegisterMasks() local
559 const size_t index = dedupe.size(); in PrepareRegisterMasks()
560 stack_map.register_mask_index = dedupe.emplace(stack_map.register_mask, index).first->second; in PrepareRegisterMasks()
563 return dedupe.size(); in PrepareRegisterMasks()
569 ScopedArenaUnorderedMap<uint32_t, size_t> dedupe(allocator_->Adapter(kArenaAllocStackMapStream)); in PrepareMethodIndices() local
571 const size_t index = dedupe.size(); in PrepareMethodIndices()
574 stack_map.dex_method_index_idx = dedupe.emplace(method_index, index).first->second; in PrepareMethodIndices()
579 const size_t index = dedupe.size(); in PrepareMethodIndices()
582 inline_info.dex_method_index_idx = dedupe.emplace(method_index, index).first->second; in PrepareMethodIndices()
585 method_indices_.resize(dedupe.size()); in PrepareMethodIndices()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc691 jboolean dedupe) { in VMRuntime_setDedupeHiddenApiWarnings() argument
692 Runtime::Current()->SetDedupeHiddenApiWarnings(dedupe); in VMRuntime_setDedupeHiddenApiWarnings()