Searched refs:lb (Results 1 – 3 of 3) sorted by relevance
139 auto lb = lower_bound(k); in GetOrCreate() local140 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()
429 auto lb = thunks_.lower_bound(key); in ProcessPatches() local430 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()
3628 auto lb = critical_native_code_with_clinit_check_.lower_bound(first_method); in FixupStaticTrampolines() local3629 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()