Lines Matching defs:Cand
135 auto Cand = llvm::lower_bound(
141 if (Cand == Candidates.end()) {
142 Cand = std::prev(Cand);
143 } else if (Cand != Candidates.begin()) {
144 const StubTy *LeftCand = std::prev(Cand);
145 if (Cand->first - DotAddress > DotAddress - LeftCand->first)
146 Cand = LeftCand;
153 uint64_t PCRelTgtAddress = Cand->first;
161 << Twine::utohexstr(Cand->first) << "\n";
163 return (PCOffset < MinVal || PCOffset > MaxVal) ? nullptr : Cand->second;