Home
last modified time | relevance | path

Searched refs:existing (Results 1 – 20 of 20) sorted by relevance

/art/libartbase/base/
Dbit_vector.cc162 uint32_t existing = storage_[idx]; in Union() local
163 uint32_t update = existing | src->GetRawStorageWord(idx); in Union()
164 if (existing != update) { in Union()
197 uint32_t existing = storage_[idx]; in UnionIfNotIn() local
198 uint32_t update = existing | in UnionIfNotIn()
200 if (existing != update) { in UnionIfNotIn()
207 uint32_t existing = storage_[idx]; in UnionIfNotIn() local
208 uint32_t update = existing | union_with->GetRawStorageWord(idx); in UnionIfNotIn()
209 if (existing != update) { in UnionIfNotIn()
/art/tools/veridex/
Dresolver.cc31 auto existing = type_map_.find(name); in Run() local
33 if (existing != type_map_.end()) { in Run()
35 type_infos_[type_idx] = *existing->second; in Run()
80 auto existing = type_map_.find(name); in GetVeriClass() local
81 if (existing == type_map_.end()) { in GetVeriClass()
91 existing = type_map_.find(klass_name); in GetVeriClass()
92 if (existing == type_map_.end()) { in GetVeriClass()
98 existing->second->GetKind(), last_array + 1, existing->second->GetClassDef()); in GetVeriClass()
105 cls = existing->second; in GetVeriClass()
/art/compiler/dex/
Dverification_results.cc58 const VerifiedMethod* existing = nullptr; in ProcessVerifiedMethod() local
64 CHECK(atomic_verified_methods_.Get(ref, &existing)); in ProcessVerifiedMethod()
65 CHECK_NE(verified_method.get(), existing); in ProcessVerifiedMethod()
75 existing = it->second; in ProcessVerifiedMethod()
87 auto ex_set = existing->GetSafeCastSet(); in ProcessVerifiedMethod()
/art/cmdline/
Dcmdline_types.h648 Result ParseAndAppend(const std::string& option, ProfileSaverOptions& existing) {
652 existing.enabled_ = true;
657 existing.profile_boot_class_path_ = true;
662 existing.profile_aot_code_ = true;
667 existing.wait_for_jit_notifications_to_save_ = false;
676 return ParseInto(existing,
682 return ParseInto(existing,
688 return ParseInto(existing,
694 return ParseInto(existing,
700 return ParseInto(existing,
[all …]
/art/runtime/jit/
Dprofiling_info.cc85 mirror::Class* existing = cache->classes_[i].Read<kWithoutReadBarrier>(); in AddInvokeInfo() local
86 mirror::Class* marked = ReadBarrier::IsMarked(existing); in AddInvokeInfo()
95 GcRoot<mirror::Class> expected_root(existing); in AddInvokeInfo()
/art/compiler/optimizing/
Dgvn.cc104 HInstruction* existing = node->GetInstruction(); in Lookup() local
105 if (existing->Equals(instruction)) { in Lookup()
106 return existing; in Lookup()
488 HInstruction* existing = set->Lookup(current); in VisitBasicBlock() local
489 if (existing != nullptr) { in VisitBasicBlock()
494 current->ReplaceWith(existing); in VisitBasicBlock()
Dssa_liveness_analysis.cc365 LiveInterval* existing = GetParent()->GetSiblingAt(position); in FindFirstRegisterHint() local
366 if (existing != nullptr in FindFirstRegisterHint()
367 && existing->HasRegister() in FindFirstRegisterHint()
370 && (free_until[existing->GetRegister()] >= next_register_use)) { in FindFirstRegisterHint()
371 return existing->GetRegister(); in FindFirstRegisterHint()
Dblock_builder.cc318 auto existing = catch_blocks.find(address); in InsertTryBoundaryBlocks() local
319 if (existing != catch_blocks.end()) { in InsertTryBoundaryBlocks()
321 TryCatchInformation* info = existing->second->GetTryCatchInformation(); in InsertTryBoundaryBlocks()
Dregister_allocator_linear_scan.cc980 LiveInterval* existing = unhandled_->back(); in AllocateBlockedReg() local
981 DCHECK(existing->IsHighInterval()); in AllocateBlockedReg()
982 DCHECK_EQ(existing->GetLowInterval(), current); in AllocateBlockedReg()
/art/test/800-smali/smali/
Db_22777307.smali11 # Cloneable was chosen because it's an already existing interface.
/art/runtime/
Dclass_table.cc73 mirror::Class* const existing = existing_it->Read(); in UpdateClass() local
74 CHECK_NE(existing, klass) << descriptor; in UpdateClass()
75 CHECK(!existing->IsResolved()) << descriptor; in UpdateClass()
82 return existing; in UpdateClass()
Doat_file_manager.cc76 for (const std::unique_ptr<const OatFile>& existing : oat_files_) { in RegisterOatFile() local
77 CHECK_NE(oat_file.get(), existing.get()) << oat_file->GetLocation(); in RegisterOatFile()
80 CHECK_NE(oat_file->Begin(), existing->Begin()) << "Oat file already mapped at that location"; in RegisterOatFile()
/art/tools/
Dhost_bcp.sh25 and existing \$ANDROID_PRODUCT_OUT/apex/com.android.runtime* paths.
Dart159 # Expand image_files to a list of existing image files on the disk.
174 # If there are no existing core.art, try to find boot.art.
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h441 TArg& existing = load_argument_(); in ParseArgumentSingle() local
442 CmdlineParseResult<TArg> result = type_parser.ParseAndAppend(argument, existing); in ParseArgumentSingle()
/art/dexlayout/
Dcompact_dex_writer.cc225 auto existing = dedupe_map_.emplace(range, item_offset); in Dedupe() local
226 if (!existing.second) { in Dedupe()
228 return existing.first->second; in Dedupe()
Ddex_ir_builder.cc800 auto existing = code_items_map_.find(offsets_pair); in DedupeOrCreateCodeItem() local
801 if (existing != code_items_map_.end()) { in DedupeOrCreateCodeItem()
802 return existing->second; in DedupeOrCreateCodeItem()
/art/dex2oat/dex/
Ddex_to_dex_compiler.cc547 auto existing = shared_code_item_quicken_info_.find(code_item); in CompileMethod() local
550 if (existing != shared_code_item_quicken_info_.end()) { in CompileMethod()
551 existing_data = &existing->second; in CompileMethod()
/art/tools/jfuzz/
DREADME.md122 Mutation-based fuzz testing applies small random changes to existing inputs
/art/runtime/interpreter/
Dinterpreter_common.cc628 ObjPtr<mirror::Object> existing = shadow_frame->GetVRegReference(this_obj_vreg); in SetStringInitValueToAllAliases() local
629 if (existing == nullptr) { in SetStringInitValueToAllAliases()
638 if (shadow_frame->GetVRegReference(i) == existing) { in SetStringInitValueToAllAliases()