Home
last modified time | relevance | path

Searched refs:lb (Results 1 – 4 of 4) sorted by relevance

/art/libartbase/base/
Dsafe_map.h139 auto lb = lower_bound(k); in GetOrCreate() local
140 if (lb != end() && !key_comp()(k, lb->first)) { in GetOrCreate()
141 return lb->second; in GetOrCreate()
143 auto it = PutBefore(lb, k, create()); in GetOrCreate()
/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.cc429 auto lb = thunks_.lower_bound(key); in ProcessPatches() local
430 if (lb == thunks_.end() || thunks_.key_comp()(key, lb->first)) { in ProcessPatches()
432 auto it = thunks_.PutBefore(lb, key, ThunkDataForPatch(patch, max_next_offset)); in ProcessPatches()
435 old_data = &lb->second; in ProcessPatches()
/art/libprofile/profile/
Dprofile_compilation_info.cc583 auto lb = classes.lower_bound(type_idx); in AddClass() local
584 if (lb != classes.end() && *lb == type_idx) { in AddClass()
597 classes.emplace_hint(lb, type_idx); in AddClass()
/art/runtime/
Dclass_linker.cc3430 auto lb = critical_native_code_with_clinit_check_.lower_bound(first_method); in FixupStaticTrampolines() local
3431 while (lb != critical_native_code_with_clinit_check_.end() && lb->first <= last_method) { in FixupStaticTrampolines()
3432 lb->first->SetEntryPointFromJni(lb->second); in FixupStaticTrampolines()
3433 lb = critical_native_code_with_clinit_check_.erase(lb); in FixupStaticTrampolines()