Home
last modified time | relevance | path

Searched refs:lower_bound (Results 1 – 12 of 12) 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()
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/
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.cc511 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()
Djit_code_cache.cc1398 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.h306 int32_t lower_bound,
/art/libdexfile/dex/
Ddex_file_verifier.cc3429 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/
Doat_file.cc1806 auto secondary_lb = secondary_oat_dex_files_.lower_bound(key); in GetOatDexFile()
/art/runtime/mirror/
Dvar_handle.cc1673 auto it = std::lower_bound(std::cbegin(kAccessorToAccessMode), in GetAccessModeByMethodName()