Home
last modified time | relevance | path

Searched refs:lb (Results 1 – 3 of 3) 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/runtime/
Dclass_linker.cc3628 auto lb = critical_native_code_with_clinit_check_.lower_bound(first_method); in FixupStaticTrampolines() local
3629 while (lb != critical_native_code_with_clinit_check_.end() && lb->first <= last_method) { in FixupStaticTrampolines()
3630 lb->first->SetEntryPointFromJni(lb->second); in FixupStaticTrampolines()
3631 lb = critical_native_code_with_clinit_check_.erase(lb); in FixupStaticTrampolines()