Lines Matching defs:best
428 * This function scans the list of OFFERS, and returns the "best" offer.
431 * The best:
450 PKT_LIST *wk, *tk, *best;
484 * Pass two. Pick out the best offer. Point system.
495 best = NULL;
573 if (!best)
574 best = wk;
576 if (best->offset < wk->offset)
577 best = wk;
580 if (best) {
582 printf("%s: Found best: points: %d\n", s_n, best->offset);
584 remove_list(best, B_FALSE);
590 return (best);
720 /* here we scan the list of OFFERS, select the best one. */