Searched refs:lower_bound (Results 1 – 12 of 12) sorted by relevance
/art/libartbase/base/ |
D | safe_map.h | 78 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()
|
D | mem_map.cc | 69 for (auto it = gMaps->lower_bound(map.BaseBegin()), end = gMaps->end(); in GetGMapsEntry() 960 for (auto it = gMaps->lower_bound(base_begin), end = gMaps->end(); in HasMemMap() 973 for (auto it = gMaps->lower_bound(address), end = gMaps->end(); in GetLargestMemMapAt()
|
/art/compiler/utils/ |
D | swap_space.cc | 116 : 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/ |
D | debugger_interface.cc | 511 auto removed_begin = std::lower_bound(removed.begin(), removed.end(), group_ptr); in RepackEntries() 512 auto removed_end = std::lower_bound(removed.begin(), removed.end(), group_end); in RepackEntries()
|
D | jit_code_cache.cc | 1398 auto it = method_code_map_.lower_bound(reinterpret_cast<const void*>(pc)); 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 | 421 auto it = free_blocks_.lower_bound(info); in RemoveFreePrev() 509 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/compiler/optimizing/ |
D | code_generator_x86.h | 306 int32_t lower_bound,
|
/art/libdexfile/dex/ |
D | dex_file_verifier.cc | 3429 const auto angle_end = std::lower_bound(first, last, "=", compare); in FindStringRangesForMethodNames() 3432 const auto angle_start = std::lower_bound(first, angle_end, "<", compare); in FindStringRangesForMethodNames() 3443 const auto it = std::lower_bound(angle_start, angle_end, kClinit, compare); in FindStringRangesForMethodNames() 3452 const auto it = std::lower_bound(angle_start, angle_end, kInit, compare); in FindStringRangesForMethodNames()
|
/art/runtime/ |
D | oat_file.cc | 1806 auto secondary_lb = secondary_oat_dex_files_.lower_bound(key); in GetOatDexFile()
|
/art/runtime/mirror/ |
D | var_handle.cc | 1673 auto it = std::lower_bound(std::cbegin(kAccessorToAccessMode), in GetAccessModeByMethodName()
|