Home
last modified time | relevance | path

Searched refs:first (Results 176 – 200 of 226) sorted by relevance

12345678910

/art/runtime/
Dinstrumentation.cc115 for (auto i = stack->begin(); i != stack->end() && i->first <= pop_until_;) { in ~InstrumentationStackPopper()
141 for (; i != stack->end() && i->first <= stack_pointer; i++) { in PopFramesTo()
154 pop_until_ = i->first; in PopFramesTo()
1632 for (auto i = stack->begin(); i != stack->end() && i->first <= pop_until;) { in PopFramesForDeoptimization()
Doat_file_manager.cc626 [](const auto& a, const auto& b) { return a.first < b.first; }); in UnlinkLeastRecentlyUsedVdexIfNeeded()
Dstack.cc87 if (cur_inline_info_.first != header) { in GetCurrentInlineInfo()
96 if (cur_stack_map_.first != cur_quick_frame_pc_) { in GetCurrentStackMap()
/art/runtime/verifier/
Dreg_type_cache.cc251 const ObjPtr<mirror::Class> reg_klass = pair.first.Read(); in FindClass()
725 GcRoot<mirror::Class>& root = pair.first; in VisitRoots()
/art/openjdkjvmti/
Dti_heap.cc1172 if (elem_pair.first != nullptr) { in VisitArray()
1178 elem_pair.first.Ptr()); in VisitArray()
1822 bool had_obsolete_tag = env->object_tag_table->RemoveLocked(it.first, &obsolete_tag); in ReplaceWeakRoots()
1828 changed_tags.try_emplace(env).first->second.push_back( in ReplaceWeakRoots()
1829 { it.first, obsolete_tag, it.second, new_tag }); in ReplaceWeakRoots()
Devents.cc140 const UniqueThread& unique_thread = pair.first; in GetEventMask()
141 if (unique_thread.first == thread && in GetEventMask()
159 const UniqueThread& unique_thread = pair.first; in GetEventMaskOrNull()
160 if (unique_thread.first == thread && in GetEventMaskOrNull()
Devents.h128 return std::hash<uint32_t>{}(k.second) ^ (std::hash<void*>{}(k.first) << 1); in operator()
/art/tools/jvmti-agents/wrapagentproperties/
Dwrapagentproperties.cc168 all_props.insert(p.first); in WrapGetSystemProperties()
/art/compiler/optimizing/
Dnodes.cc374 static void FixPhisAfterPredecessorsReodering(HBasicBlock* block, size_t first, size_t second) { in FixPhisAfterPredecessorsReodering() argument
377 HInstruction* first_instr = phi->InputAt(first); in FixPhisAfterPredecessorsReodering()
380 phi->ReplaceInput(second_instr, first); in FixPhisAfterPredecessorsReodering()
2495 HBasicBlock* first = entry_block_->GetSuccessors()[0]; in InlineInto() local
2496 DCHECK(!first->IsInLoop()); in InlineInto()
2497 at->MergeWithInlined(first); in InlineInto()
2526 if (current != exit_block_ && current != entry_block_ && current != first) { in InlineInto()
Dloop_optimization.cc1185 if (i->first->IsPhi()) { in Vectorize()
1186 HInstruction* phi = i->first; in Vectorize()
1261 if (!i->first->IsPhi()) { in GenerateNewLoop()
1263 GenerateVecReductionPhiInputs(i->second->AsPhi(), i->first); in GenerateNewLoop()
/art/libdexfile/
DAndroid.bp379 // This library dlopens libdexfile_external on first use, so there is no build
/art/dexlayout/
Ddexdiag.cc93 map_[it->first] = 0; in PageCount()
Dcompact_dex_writer.cc228 return existing.first->second; in Dedupe()
/art/runtime/base/
Dmutex.cc357 max_tid = pair.first; in DumpContention()
368 max_tid = pair.first; in DumpContention()
/art/test/
DREADME.md23 exercise "API mismatch" situations by replacing class files created in the first
/art/dex2oat/linker/arm/
Drelative_patcher_thumb2_test.cc189 CHECK(last_result.first); in Create2MethodsWithGap()
204 CHECK(result.first); in GetMethodOffset()
483 ASSERT_FALSE(method_offset_map_.FindMethodOffset(MethodRef(missing_method_index)).first); in TEST_F()
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64_test.cc156 CHECK(last_result.first); in Create2MethodsWithGap()
170 CHECK(result.first); in GetMethodOffset()
651 ASSERT_FALSE(method_offset_map_.FindMethodOffset(MethodRef(missing_method_index)).first); in TEST_F()
/art/test/utils/
Dregen-test-files69 art-run-test-1906-suspend-list-me-first
/art/runtime/gc/collector/
Dconcurrent_copying.cc2536 live_bitmap->VisitMarkedRange(reinterpret_cast<uintptr_t>(range.first), in MarkZygoteLargeObjects()
3295 byte_size = it->first; in AllocateInSkippedBlock()
3304 CHECK_ALIGNED(it->first - alloc_size, space::RegionSpace::kAlignment); in AllocateInSkippedBlock()
3305 CHECK_GE(it->first - alloc_size, min_object_size) in AllocateInSkippedBlock()
3306 … << "byte_size=" << byte_size << " it->first=" << it->first << " alloc_size=" << alloc_size; in AllocateInSkippedBlock()
3310 byte_size = it->first; in AllocateInSkippedBlock()
/art/test/559-checker-irreducible-loop/smali/
DIrreducibleLoop.smali451 # to analyze3 except the branches of the first 'if' are swapped, to
/art/runtime/jni/
Djni_id_manager.cc309 StackReflectiveHandleScope<counts.first, counts.second> hs(self); in EncodeGenericId()
/art/cmdline/
DREADME.md228 be default-constructed to `T{}` for the first occurrence of the argument).
/art/runtime/interpreter/mterp/x86_64ng/
Dmain.S918 leaq (rREFS, %rcx, 4), %rax # pointer to first argument in reference array
920 leaq (rFP, %rcx, 4), %rcx # pointer to first argument in register array
/art/runtime/gc/space/
Dimage_space.cc718 return intern_remap_.begin()->first->GetClass<kVerifyNone, kWithoutReadBarrier>(); in GetStringClass()
3646 auto invoke_sequentially = [](auto first, auto second) { in LoadBootImage() argument
3647 return first() || second(); in LoadBootImage()
3695 bool first = true; in LoadBootImage() local
3697 if (!first) { in LoadBootImage()
/art/test/565-checker-doublenegbitwise/smali/
DSmaliTests.smali229 # See first note above.
656 # See first note above.

12345678910