Searched refs:lb (Results 1 – 4 of 4) 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()
583 auto lb = classes.lower_bound(type_idx); in AddClass() local584 if (lb != classes.end() && *lb == type_idx) { in AddClass()597 classes.emplace_hint(lb, type_idx); in AddClass()
3430 auto lb = critical_native_code_with_clinit_check_.lower_bound(first_method); in FixupStaticTrampolines() local3431 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()