Home
last modified time | relevance | path

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

/art/runtime/native/
Djava_lang_StringFactory.cc209 int lower_bound = 0x80; in StringFactory_newStringFromUtf8Bytes() local
238 lower_bound = 0xa0; in StringFactory_newStringFromUtf8Bytes()
242 lower_bound = 0x90; in StringFactory_newStringFromUtf8Bytes()
247 if (b < lower_bound || b > upper_bound) { in StringFactory_newStringFromUtf8Bytes()
253 lower_bound = 0x80; in StringFactory_newStringFromUtf8Bytes()
266 lower_bound = 0x80; in StringFactory_newStringFromUtf8Bytes()
/art/libartbase/base/
Dsafe_map.h94 template<typename Kv> iterator lower_bound(const Kv& k) { return map_.lower_bound(k); } in lower_bound() function
95 template<typename Kv> const_iterator lower_bound(const Kv& k) const { in lower_bound() function
96 return map_.lower_bound(k); in lower_bound()
155 auto lb = lower_bound(k); in GetOrCreate()
Dmem_map.cc69 for (auto it = gMaps->lower_bound(map.BaseBegin()), end = gMaps->end(); in GetGMapsEntry()
984 for (auto it = gMaps->lower_bound(base_begin), end = gMaps->end(); in HasMemMap()
997 for (auto it = gMaps->lower_bound(address), end = gMaps->end(); in GetLargestMemMapAt()
/art/dex2oat/utils/
Dswap_space.cc117 : free_by_size_.lower_bound(FreeBySizeEntry { size, free_by_start_.begin() }); in Alloc()
187 auto it = free_by_start_.lower_bound(chunk); in Free()
/art/runtime/base/
Dgc_visited_arena_pool.cc233 auto best_fit_iter = best_fit_allocs_.lower_bound(&temp_chunk); in AllocArena()
236 best_fit_iter = best_fit_allocs_.lower_bound(&temp_chunk); in AllocArena()
281 auto next_iter = free_chunks_.lower_bound(&temp_chunk); in FreeRangeLocked()
Dtiming_logger.cc94 auto it = std::lower_bound(cumulative_timers_.begin(), cumulative_timers_.end(), candidate); in AddPair()
/art/runtime/jit/
Ddebugger_interface.cc537 auto removed_begin = std::lower_bound(removed.begin(), removed.end(), group_ptr); in RepackEntries()
538 auto removed_end = std::lower_bound(removed.begin(), removed.end(), group_end); in RepackEntries()
Djit_code_cache.cc1334 auto it = method_code_map_.lower_bound(pc_ptr); 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.cc452 auto it = free_blocks_.lower_bound(info); in RemoveFreePrev()
544 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/libdexfile/dex/
Ddex_file_verifier.cc3606 const auto angle_end = std::lower_bound(first, last, "=", compare); in FindStringRangesForMethodNames()
3609 const auto angle_start = std::lower_bound(first, angle_end, "<", compare); in FindStringRangesForMethodNames()
3620 const auto it = std::lower_bound(angle_start, angle_end, kClinit, compare); in FindStringRangesForMethodNames()
3629 const auto it = std::lower_bound(angle_start, angle_end, kInit, compare); in FindStringRangesForMethodNames()
/art/compiler/optimizing/
Dcode_generator_x86.h389 int32_t lower_bound,
Dcode_generator_x86.cc8840 int32_t lower_bound, in GenPackedSwitchWithCompares() argument
8851 if (lower_bound != 0) { in GenPackedSwitchWithCompares()
8853 __ cmpl(value_reg, Immediate(lower_bound)); in GenPackedSwitchWithCompares()
8866 int32_t compare_to_value = lower_bound + index + 1; in GenPackedSwitchWithCompares()
8877 __ cmpl(value_reg, Immediate(lower_bound + index)); in GenPackedSwitchWithCompares()
8888 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
8894 lower_bound, in VisitPackedSwitch()
8913 int32_t lower_bound = switch_instr->GetStartValue(); in VisitX86PackedSwitch() local
8921 lower_bound, in VisitX86PackedSwitch()
8933 if (lower_bound != 0) { in VisitX86PackedSwitch()
[all …]
Dcode_generator_x86_64.cc8164 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
8181 if (lower_bound != 0) { in VisitPackedSwitch()
8183 __ cmpl(value_reg_in, Immediate(lower_bound)); in VisitPackedSwitch()
8196 int32_t compare_to_value = lower_bound + index + 1; in VisitPackedSwitch()
8207 __ cmpl(value_reg_in, Immediate(static_cast<int32_t>(lower_bound + index))); in VisitPackedSwitch()
8220 if (lower_bound != 0) { in VisitPackedSwitch()
8221 __ leal(temp_reg, Address(value_reg_in, -lower_bound)); in VisitPackedSwitch()
Dcode_generator_arm64.cc6631 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
6650 __ Subs(temp, value_reg, Operand(lower_bound)); in VisitPackedSwitch()
6683 if (lower_bound != 0) { in VisitPackedSwitch()
6685 __ Sub(index, value_reg, Operand(lower_bound)); in VisitPackedSwitch()
Dcode_generator_riscv64.cc4836 int32_t lower_bound = instruction->GetStartValue(); in VisitPackedSwitch() local
4847 if (lower_bound != 0) { in VisitPackedSwitch()
4849 __ AddConst32(temp, value, -lower_bound); in VisitPackedSwitch()
Dcode_generator_arm_vixl.cc10059 int32_t lower_bound = switch_instr->GetStartValue(); in VisitPackedSwitch() local
10074 __ Adds(temp_reg, value_reg, -lower_bound); in VisitPackedSwitch()
10105 if (lower_bound != 0) { in VisitPackedSwitch()
10107 __ Sub(key_reg, value_reg, lower_bound); in VisitPackedSwitch()
/art/libprofile/profile/
Dprofile_compilation_info.cc600 auto lb = classes.lower_bound(type_idx); in AddClass()
1197 auto profile_index_it = profile_key_map_.lower_bound(profile_key); in GetOrAddDexFileData()
2008 auto it = other_dex_data->class_set.lower_bound(dex::TypeIndex(num_type_ids)); in MergeWith()
/art/runtime/gc/collector/
Dconcurrent_copying.cc3401 auto it = skipped_blocks_map_.lower_bound(alloc_size); in AllocateInSkippedBlock()
3410 it = skipped_blocks_map_.lower_bound(alloc_size + min_object_size); in AllocateInSkippedBlock()
/art/runtime/mirror/
Dvar_handle.cc1562 auto it = std::lower_bound(std::cbegin(kAccessorToAccessMode), in GetAccessModeByMethodName()
/art/runtime/oat/
Doat_file.cc2135 auto secondary_lb = secondary_oat_dex_files_.lower_bound(key); in GetOatDexFile()
/art/runtime/gc/
Dheap.cc2412 auto it = bins_.lower_bound(alloc_size); in MarkNonForwardedObject()
/art/runtime/
Dclass_linker.cc3703 auto lb = critical_native_code_with_clinit_check_.lower_bound(first_method); in FixupStaticTrampolines()