Home
last modified time | relevance | path

Searched refs:begin (Results 101 – 125 of 269) sorted by relevance

1234567891011

/art/libdexfile/dex/
Ddex_file_layout.h100 static int MadviseLargestPageAlignedRegion(const uint8_t* begin, const uint8_t* end, int advice);
Dclass_accessor-inl.h217 return { std::next(fields.begin(), NumStaticFields()), fields.end() }; in GetInstanceFields()
234 return { std::next(methods.begin(), NumDirectMethods()), methods.end() }; in GetVirtualMethods()
/art/runtime/gc/space/
Drosalloc_space.h124 uint8_t* begin,
166 uint8_t* begin,
Dregion_space-inl.h381 inline mirror::Object* RegionSpace::AllocLargeInRange(size_t begin, in AllocLargeInRange() argument
388 DCHECK_LE(0u, begin); in AllocLargeInRange()
389 DCHECK_LT(begin, end); in AllocLargeInRange()
391 size_t left = begin; in AllocLargeInRange()
Dlarge_object_space.cc112 LargeObjectSpace::LargeObjectSpace(const std::string& name, uint8_t* begin, uint8_t* end, in LargeObjectSpace() argument
117 total_objects_allocated_(0), begin_(begin), end_(end) { in LargeObjectSpace()
374 uint8_t* begin, in FreeListSpace() argument
376 : LargeObjectSpace(name, begin, end, "free list space lock"), in FreeListSpace()
378 const size_t space_capacity = end - begin; in FreeListSpace()
Dlarge_object_space.h120 explicit LargeObjectSpace(const std::string& name, uint8_t* begin, uint8_t* end,
204 FreeListSpace(const std::string& name, MemMap&& mem_map, uint8_t* begin, uint8_t* end);
/art/runtime/
Dimage.h407 const Block* begin = reinterpret_cast<const Block*>(image_begin + blocks_offset_); in GetBlocks() local
408 return {begin, begin + blocks_count_}; in GetBlocks()
Dreference_table.cc64 entries_.erase(entries_.begin() + i); in Remove()
271 std::sort(sorted_entries.begin(), sorted_entries.end(), GcRootComparator()); in Dump()
345 std::sort(sorted_summaries.begin(), sorted_summaries.end(), SummaryElementComparator()); in Dump()
Dbacktrace_helper.cc102 for (auto it = unwinder->frames().begin() + skip_count_; it != unwinder->frames().end(); ++it) { in CollectImpl()
Dintern_table-inl.h72 tables_.insert(tables_.begin(), in AddInternStrings()
Dcha.cc62 for (auto map_it = cha_dependency_map_.begin(); map_it != cha_dependency_map_.end(); ) { in RemoveDependentsWithMethodHeaders()
66 dependents.begin(), in RemoveDependentsWithMethodHeaders()
215 auto it = std::find(method_headers_.begin(), method_headers_.end(), method_header); in VisitFrame()
709 for (auto it = cha_dependency_map_.begin(); it != cha_dependency_map_.end(); ) { in RemoveDependenciesForLinearAlloc()
/art/runtime/jni/
Djni_id_manager.cc419 for (auto it = field_id_map_.begin(); it != field_id_map_.end(); ++it) { in VisitReflectiveTargets()
421 uintptr_t id = IndexToId(std::distance(field_id_map_.begin(), it)); in VisitReflectiveTargets()
472 for (auto it = method_id_map_.begin(); it != method_id_map_.end(); ++it) { in VisitReflectiveTargets()
474 uintptr_t id = IndexToId(std::distance(method_id_map_.begin(), it)); in VisitReflectiveTargets()
583 for (auto it = methods_.begin(); it != methods_.end(); ++it) { in VisitTargets()
589 for (auto it = fields_.begin(); it != fields_.end(); ++it) { in VisitTargets()
/art/disassembler/
Ddisassembler_x86.cc42 size_t DisassemblerX86::Dump(std::ostream& os, const uint8_t* begin) { in Dump() argument
43 return DumpInstruction(os, begin); in Dump()
46 void DisassemblerX86::Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) { in Dump() argument
48 for (const uint8_t* cur = begin; cur < end; cur += length) { in Dump()
163 static std::string DumpCodeHex(const uint8_t* begin, const uint8_t* end) { in DumpCodeHex() argument
165 for (size_t i = 0; begin + i < end; ++i) { in DumpCodeHex()
166 hex << StringPrintf("%02X", begin[i]); in DumpCodeHex()
/art/tools/veridex/
Dhidden_api.cc37 bool success = hiddenapi::ApiList::FromNames(values.begin() + 1, values.end(), &membership); in HiddenApi()
Dhidden_api.h90 std::replace(val.begin(), val.end(), '.', '/'); in ToInternalName()
/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.cc206 std::make_heap(pending_thunks_.begin(), pending_thunks_.end(), PendingThunkComparator()); in WriteThunks()
221 std::pop_heap(pending_thunks_.begin(), pending_thunks_.end(), PendingThunkComparator()); in WriteThunks()
224 std::push_heap(pending_thunks_.begin(), pending_thunks_.end(), PendingThunkComparator()); in WriteThunks()
463 unreserved_thunks_.insert(unreserved_thunks_.begin() + index, data); in AddUnreservedThunk()
/art/compiler/optimizing/
Dgraph_checker.cc96 sorted_predecessors.assign(block->GetPredecessors().begin(), block->GetPredecessors().end()); in VisitBasicBlock()
97 std::sort(sorted_predecessors.begin(), sorted_predecessors.end()); in VisitBasicBlock()
98 for (auto it = sorted_predecessors.begin(), end = sorted_predecessors.end(); it != end; ) { in VisitBasicBlock()
105 std::count(p->GetSuccessors().begin(), p->GetSuccessors().end(), block); in VisitBasicBlock()
119 sorted_successors.assign(block->GetSuccessors().begin(), block->GetSuccessors().end()); in VisitBasicBlock()
120 std::sort(sorted_successors.begin(), sorted_successors.end()); in VisitBasicBlock()
121 for (auto it = sorted_successors.begin(), end = sorted_successors.end(); it != end; ) { in VisitBasicBlock()
128 std::count(s->GetPredecessors().begin(), s->GetPredecessors().end(), block); in VisitBasicBlock()
/art/runtime/gc/accounting/
Dcard_table-inl.h225 uint8_t* begin = mem_map_.Begin() + offset_; in IsValidCard() local
227 return card_addr >= begin && card_addr < end; in IsValidCard()
Dspace_bitmap.cc124 void SpaceBitmap<kAlignment>::ClearRange(const mirror::Object* begin, const mirror::Object* end) { in ClearRange() argument
125 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(begin) - heap_begin_; in ClearRange()
Dspace_bitmap_test.cc43 BitmapVerify(ContinuousSpaceBitmap* bitmap, const mirror::Object* begin, in BitmapVerify() argument
46 begin_(begin), in BitmapVerify()
/art/compiler/
Dexception_test.cc138 const dex::TryItem& t0 = accessor.TryItems().begin()[0]; in TEST_F()
139 const dex::TryItem& t1 = accessor.TryItems().begin()[1]; in TEST_F()
/art/runtime/base/
Dlocks.cc384 auto it = std::find(list.begin(), list.end(), mutex); in RemoveFromExpectedMutexesOnWeakRefAccess()
390 auto it = std::find(list.begin(), list.end(), mutex); in RemoveFromExpectedMutexesOnWeakRefAccess()
399 return std::find(list.begin(), list.end(), mutex) != list.end(); in IsExpectedOnWeakRefAccess()
/art/compiler/utils/
Ddedupe_set-inl.h173 std::equal(lhs.Key()->begin(), lhs.Key()->end(), rhs.Key()->begin());
/art/test/ti-agent/
Djni_binder.cc132 std::replace(result.begin(), result.end(), '/', '.'); in DescriptorToDot()
137 std::replace(result.begin(), result.end(), '/', '.'); in DescriptorToDot()
/art/runtime/jit/
Djit_code_cache.cc178 methods_.begin(), in RemoveMethodsIn()
188 auto it = std::find(methods_.begin(), methods_.end(), method); in RemoveMethod()
199 std::replace(methods_.begin(), methods_.end(), old_method, new_method); in MoveObsoleteMethod()
540 for (auto it = jni_stubs_map_.begin(); it != jni_stubs_map_.end();) { in RemoveMethodsIn()
550 for (auto it = method_code_map_.begin(); it != method_code_map_.end();) { in RemoveMethodsIn()
560 for (auto it = osr_code_map_.begin(); it != osr_code_map_.end();) { in RemoveMethodsIn()
569 for (auto it = profiling_infos_.begin(); it != profiling_infos_.end();) { in RemoveMethodsIn()
852 for (auto it = method_code_map_.begin(); it != method_code_map_.end();) { in RemoveMethodLocked()
1247 for (auto it = jni_stubs_map_.begin(); it != jni_stubs_map_.end();) { in RemoveUnmarkedCode()
1261 for (auto it = method_code_map_.begin(); it != method_code_map_.end();) { in RemoveUnmarkedCode()
[all …]

1234567891011