Lines Matching defs:best
310 /* uncompress a compressed symbol. When this function is called, the best table
638 int i, best, bestprofit;
641 best = 0;
645 best = i;
649 return best;
652 /* this is the core of the algorithm: calculate the "best" table */
655 int i, best;
665 /* find the token with the best profit value */
666 best = find_best_token();
667 if (token_profit[best] == 0)
670 /* place it in the "best" table */
672 best_table[i][0] = best & 0xFF;
673 best_table[i][1] = (best >> 8) & 0xFF;