Home | History | Annotate | Download | only in gold

Lines Matching refs:lookup_key

2429   const Offset_to_lineno_entry lookup_key = { offset, 0, 0, true, 0 };
2431 // lower_bound() returns the smallest offset which is >= lookup_key.
2432 // If no offset in offsets is >= lookup_key, returns end().
2434 = std::lower_bound(offsets->begin(), offsets->end(), lookup_key);
2466 // Case 1: lookup_key has offset == 10. lower_bound returns
2469 // Case 2: lookup_key has offset 10000. lower_bound returns
2471 // Case 3: lookup_key has offset == 3211. lower_bound matches
2473 // Case 4: lookup_key has offset == 3232. lower_bound returns
2478 // Case 5: lookup_key has offset == 3214. lower_bound returns
2480 // up to the offset that's < lookup_key, offsets[0].
2483 // Case 6: lookup_key has offset == 4000. lower_bound returns
2486 // end-of-function, we know lookup_key is between
2488 // Case 7: lookup_key has offset == 5794. lower_bound returns