Lines Matching refs:Best
100 InputIt Best = Last; in find_best() local
105 if (Best == Last || BetterThan(*I, *Best)) in find_best()
106 Best = I; in find_best()
112 return Best; in find_best()
418 auto Best = Sorted.end(); in sortRelocs() local
423 (Best == Sorted.end() || R1.Addend < Best->R.Addend || in sortRelocs()
424 (!Best->Matched && R1.Addend == Best->R.Addend))) in sortRelocs()
425 Best = J; in sortRelocs()
427 if (Best != Sorted.end() && R.Addend == Best->R.Addend) in sortRelocs()
428 Best->Matched = true; in sortRelocs()
432 Sorted.splice(Best, Sorted, I); in sortRelocs()