/art/runtime/native/ |
D | java_lang_StringFactory.cc | 209 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/ |
D | safe_map.h | 94 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()
|
D | mem_map.cc | 69 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/ |
D | swap_space.cc | 117 : 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/ |
D | gc_visited_arena_pool.cc | 233 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()
|
D | timing_logger.cc | 94 auto it = std::lower_bound(cumulative_timers_.begin(), cumulative_timers_.end(), candidate); in AddPair()
|
/art/runtime/jit/ |
D | debugger_interface.cc | 537 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()
|
D | jit_code_cache.cc | 1334 auto it = method_code_map_.lower_bound(pc_ptr); in LookupMethodHeader()
|
/art/tools/veridex/ |
D | resolver.cc | 113 auto resolver_it = dex_resolvers_.lower_bound(reinterpret_cast<uintptr_t>(kls.GetClassDef())); in GetResolverOf()
|
/art/runtime/gc/space/ |
D | large_object_space.cc | 452 auto it = free_blocks_.lower_bound(info); in RemoveFreePrev() 544 auto it = free_blocks_.lower_bound(&temp_info); in Alloc()
|
/art/dex2oat/linker/arm/ |
D | relative_patcher_arm_base.cc | 429 auto lb = thunks_.lower_bound(key); in ProcessPatches()
|
/art/libdexfile/dex/ |
D | dex_file_verifier.cc | 3606 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/ |
D | code_generator_x86.h | 389 int32_t lower_bound,
|
D | code_generator_x86.cc | 8840 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 …]
|
D | code_generator_x86_64.cc | 8164 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()
|
D | code_generator_arm64.cc | 6631 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()
|
D | code_generator_riscv64.cc | 4836 int32_t lower_bound = instruction->GetStartValue(); in VisitPackedSwitch() local 4847 if (lower_bound != 0) { in VisitPackedSwitch() 4849 __ AddConst32(temp, value, -lower_bound); in VisitPackedSwitch()
|
D | code_generator_arm_vixl.cc | 10059 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/ |
D | profile_compilation_info.cc | 600 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/ |
D | concurrent_copying.cc | 3401 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/ |
D | var_handle.cc | 1562 auto it = std::lower_bound(std::cbegin(kAccessorToAccessMode), in GetAccessModeByMethodName()
|
/art/runtime/oat/ |
D | oat_file.cc | 2135 auto secondary_lb = secondary_oat_dex_files_.lower_bound(key); in GetOatDexFile()
|
/art/runtime/gc/ |
D | heap.cc | 2412 auto it = bins_.lower_bound(alloc_size); in MarkNonForwardedObject()
|
/art/runtime/ |
D | class_linker.cc | 3703 auto lb = critical_native_code_with_clinit_check_.lower_bound(first_method); in FixupStaticTrampolines()
|