Home
last modified time | relevance | path

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

/art/libartbase/base/
Dsafe_map.h78 iterator lower_bound(const K& k) { return map_.lower_bound(k); } in lower_bound() function
79 const_iterator lower_bound(const K& k) const { return map_.lower_bound(k); } in lower_bound() function
135 auto lb = lower_bound(k); in GetOrCreate()
Dmemory_type_table.h200 succ = ranges_.lower_bound(range.Limit()); in Add()
Dmem_map.cc69 for (auto it = gMaps->lower_bound(map.BaseBegin()), end = gMaps->end(); in GetGMapsEntry()
944 for (auto it = gMaps->lower_bound(base_begin), end = gMaps->end(); in HasMemMap()
957 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/jdwp/
Dobject_registry.cc133 for (auto it = object_to_entry_.lower_bound(identity_hash_code), end = object_to_entry_.end(); in ContainsLocked()
270 for (auto inner_it = object_to_entry_.lower_bound(hash_code), end = object_to_entry_.end(); in DisposeObject()
/art/compiler/optimizing/
Dcode_generator_mips64.h332 int32_t lower_bound,
337 int32_t lower_bound,
Dcode_generator_mips.h347 int32_t lower_bound,
353 int32_t lower_bound,
Dcode_generator_x86.h304 int32_t lower_bound,
Dcode_generator_x86.cc7961 int32_t lower_bound, in GenPackedSwitchWithCompares() argument
7972 if (lower_bound != 0) { in GenPackedSwitchWithCompares()
7974 __ cmpl(value_reg, Immediate(lower_bound)); in GenPackedSwitchWithCompares()
7987 int32_t compare_to_value = lower_bound + index + 1; in GenPackedSwitchWithCompares()
7998 __ cmpl(value_reg, Immediate(lower_bound + index)); in GenPackedSwitchWithCompares()
8009 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
8015 lower_bound, in VisitPackedSwitch()
8034 int32_t lower_bound = switch_instr->GetStartValue(); in VisitX86PackedSwitch() local
8042 lower_bound, in VisitX86PackedSwitch()
8054 if (lower_bound != 0) { in VisitX86PackedSwitch()
[all …]
Dcode_generator_mips64.cc7503 int32_t lower_bound, in GenPackedSwitchWithCompares() argument
7509 __ Addiu32(temp_reg, value_reg, -lower_bound); in GenPackedSwitchWithCompares()
7539 int32_t lower_bound, in GenTableBasedPackedSwitch() argument
7552 __ Addiu32(TMP, value_reg, -lower_bound); in GenTableBasedPackedSwitch()
7570 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
7579 lower_bound, in VisitPackedSwitch()
7585 lower_bound, in VisitPackedSwitch()
Dcode_generator_x86_64.cc7269 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
7286 if (lower_bound != 0) { in VisitPackedSwitch()
7288 __ cmpl(value_reg_in, Immediate(lower_bound)); in VisitPackedSwitch()
7301 int32_t compare_to_value = lower_bound + index + 1; in VisitPackedSwitch()
7312 __ cmpl(value_reg_in, Immediate(static_cast<int32_t>(lower_bound + index))); in VisitPackedSwitch()
7325 if (lower_bound != 0) { in VisitPackedSwitch()
7326 __ leal(temp_reg, Address(value_reg_in, -lower_bound)); in VisitPackedSwitch()
Dcode_generator_mips.cc10012 int32_t lower_bound, in GenPackedSwitchWithCompares() argument
10018 __ Addiu32(temp_reg, value_reg, -lower_bound); in GenPackedSwitchWithCompares()
10049 int32_t lower_bound, in GenTableBasedPackedSwitch() argument
10062 __ Addiu32(TMP, value_reg, -lower_bound); in GenTableBasedPackedSwitch()
10085 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
10105 lower_bound, in VisitPackedSwitch()
10111 lower_bound, in VisitPackedSwitch()
10127 int32_t lower_bound = switch_instr->GetStartValue(); in VisitMipsPackedSwitch() local
10140 lower_bound, in VisitMipsPackedSwitch()
Dcode_generator_arm64.cc5620 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
5639 __ Subs(temp, value_reg, Operand(lower_bound)); in VisitPackedSwitch()
5672 if (lower_bound != 0) { in VisitPackedSwitch()
5674 __ Sub(index, value_reg, Operand(lower_bound)); in VisitPackedSwitch()
Dcode_generator_arm_vixl.cc9124 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
9139 __ Adds(temp_reg, value_reg, -lower_bound); in VisitPackedSwitch()
9170 if (lower_bound != 0) { in VisitPackedSwitch()
9172 __ Sub(key_reg, value_reg, lower_bound); in VisitPackedSwitch()
/art/runtime/gc/space/
Dlarge_object_space.cc416 auto it = free_blocks_.lower_bound(info); in RemoveFreePrev()
501 auto it = free_blocks_.lower_bound(&temp_info); in Alloc()
/art/tools/veridex/
Dresolver.cc113 auto resolver_it = dex_resolvers_.lower_bound(reinterpret_cast<uintptr_t>(kls.GetClassDef())); in GetResolverOf()
/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.cc416 auto lb = thunks_.lower_bound(key); in ProcessPatches()
/art/libdexfile/dex/
Ddex_file_verifier.cc3222 const auto angle_end = std::lower_bound(first, last, "=", compare); in FindStringRangesForMethodNames()
3225 const auto angle_start = std::lower_bound(first, angle_end, "<", compare); in FindStringRangesForMethodNames()
3236 const auto it = std::lower_bound(angle_start, angle_end, kClinit, compare); in FindStringRangesForMethodNames()
3245 const auto it = std::lower_bound(angle_start, angle_end, kInit, compare); in FindStringRangesForMethodNames()
/art/runtime/gc/collector/
Dconcurrent_copying.cc3264 auto it = skipped_blocks_map_.lower_bound(alloc_size); in AllocateInSkippedBlock()
3273 it = skipped_blocks_map_.lower_bound(alloc_size + min_object_size); in AllocateInSkippedBlock()
/art/runtime/
Doat_file.cc1816 auto secondary_lb = secondary_oat_dex_files_.lower_bound(key); in GetOatDexFile()
/art/runtime/jit/
Djit_code_cache.cc1828 auto it = method_code_map_.lower_bound(reinterpret_cast<const void*>(pc)); in LookupMethodHeader()
/art/runtime/mirror/
Dvar_handle.cc1673 auto it = std::lower_bound(std::cbegin(kAccessorToAccessMode), in GetAccessModeByMethodName()
/art/runtime/gc/
Dheap.cc2389 auto it = bins_.lower_bound(alloc_size); in MarkNonForwardedObject()