Home
last modified time | relevance | path

Searched refs:lower_bound (Results 1 – 19 of 19) sorted by relevance

/art/libartbase/base/
Dsafe_map.h78 template<typename Kv> iterator lower_bound(const Kv& k) { return map_.lower_bound(k); } in lower_bound() function
79 template<typename Kv> const_iterator lower_bound(const Kv& k) const { in lower_bound() function
80 return map_.lower_bound(k); in lower_bound()
139 auto lb = lower_bound(k); in GetOrCreate()
Dmem_map.cc69 for (auto it = gMaps->lower_bound(map.BaseBegin()), end = gMaps->end(); in GetGMapsEntry()
962 for (auto it = gMaps->lower_bound(base_begin), end = gMaps->end(); in HasMemMap()
975 for (auto it = gMaps->lower_bound(address), end = gMaps->end(); in GetLargestMemMapAt()
/art/compiler/utils/
Dswap_space.cc116 : free_by_size_.lower_bound(FreeBySizeEntry { size, free_by_start_.begin() }); in Alloc()
185 auto it = free_by_start_.lower_bound(chunk); in Free()
/art/runtime/jit/
Ddebugger_interface.cc524 auto removed_begin = std::lower_bound(removed.begin(), removed.end(), group_ptr); in RepackEntries()
525 auto removed_end = std::lower_bound(removed.begin(), removed.end(), group_end); in RepackEntries()
Djit_code_cache.cc1505 auto it = method_code_map_.lower_bound(reinterpret_cast<const void*>(pc)); in LookupMethodHeader()
/art/tools/veridex/
Dresolver.cc113 auto resolver_it = dex_resolvers_.lower_bound(reinterpret_cast<uintptr_t>(kls.GetClassDef())); in GetResolverOf()
/art/runtime/gc/space/
Dlarge_object_space.cc421 auto it = free_blocks_.lower_bound(info); in RemoveFreePrev()
509 auto it = free_blocks_.lower_bound(&temp_info); in Alloc()
/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.cc429 auto lb = thunks_.lower_bound(key); in ProcessPatches()
/art/compiler/optimizing/
Dcode_generator_x86.h329 int32_t lower_bound,
Dcode_generator_x86.cc8219 int32_t lower_bound, in GenPackedSwitchWithCompares() argument
8230 if (lower_bound != 0) { in GenPackedSwitchWithCompares()
8232 __ cmpl(value_reg, Immediate(lower_bound)); in GenPackedSwitchWithCompares()
8245 int32_t compare_to_value = lower_bound + index + 1; in GenPackedSwitchWithCompares()
8256 __ cmpl(value_reg, Immediate(lower_bound + index)); in GenPackedSwitchWithCompares()
8267 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
8273 lower_bound, in VisitPackedSwitch()
8292 int32_t lower_bound = switch_instr->GetStartValue(); in VisitX86PackedSwitch() local
8300 lower_bound, in VisitX86PackedSwitch()
8312 if (lower_bound != 0) { in VisitX86PackedSwitch()
[all …]
Dcode_generator_x86_64.cc7500 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
7517 if (lower_bound != 0) { in VisitPackedSwitch()
7519 __ cmpl(value_reg_in, Immediate(lower_bound)); in VisitPackedSwitch()
7532 int32_t compare_to_value = lower_bound + index + 1; in VisitPackedSwitch()
7543 __ cmpl(value_reg_in, Immediate(static_cast<int32_t>(lower_bound + index))); in VisitPackedSwitch()
7556 if (lower_bound != 0) { in VisitPackedSwitch()
7557 __ leal(temp_reg, Address(value_reg_in, -lower_bound)); in VisitPackedSwitch()
Dcode_generator_arm64.cc6096 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
6115 __ Subs(temp, value_reg, Operand(lower_bound)); in VisitPackedSwitch()
6148 if (lower_bound != 0) { in VisitPackedSwitch()
6150 __ Sub(index, value_reg, Operand(lower_bound)); in VisitPackedSwitch()
Dcode_generator_arm_vixl.cc9555 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
9570 __ Adds(temp_reg, value_reg, -lower_bound); in VisitPackedSwitch()
9601 if (lower_bound != 0) { in VisitPackedSwitch()
9603 __ Sub(key_reg, value_reg, lower_bound); in VisitPackedSwitch()
/art/libdexfile/dex/
Ddex_file_verifier.cc3425 const auto angle_end = std::lower_bound(first, last, "=", compare); in FindStringRangesForMethodNames()
3428 const auto angle_start = std::lower_bound(first, angle_end, "<", compare); in FindStringRangesForMethodNames()
3439 const auto it = std::lower_bound(angle_start, angle_end, kClinit, compare); in FindStringRangesForMethodNames()
3448 const auto it = std::lower_bound(angle_start, angle_end, kInit, compare); in FindStringRangesForMethodNames()
/art/runtime/gc/collector/
Dconcurrent_copying.cc3290 auto it = skipped_blocks_map_.lower_bound(alloc_size); in AllocateInSkippedBlock()
3299 it = skipped_blocks_map_.lower_bound(alloc_size + min_object_size); in AllocateInSkippedBlock()
/art/runtime/
Doat_file.cc1819 auto secondary_lb = secondary_oat_dex_files_.lower_bound(key); in GetOatDexFile()
Dclass_linker.cc3628 auto lb = critical_native_code_with_clinit_check_.lower_bound(first_method); in FixupStaticTrampolines()
/art/runtime/mirror/
Dvar_handle.cc1674 auto it = std::lower_bound(std::cbegin(kAccessorToAccessMode), in GetAccessModeByMethodName()
/art/runtime/gc/
Dheap.cc2247 auto it = bins_.lower_bound(alloc_size); in MarkNonForwardedObject()