Lines Matching defs:best
356 /* uncompress a compressed symbol. When this function is called, the best table
594 int i, best, bestprofit;
597 best = 0;
601 best = i;
605 return best;
608 /* this is the core of the algorithm: calculate the "best" table */
611 int i, best;
621 /* find the token with the best profit value */
622 best = find_best_token();
623 if (token_profit[best] == 0)
626 /* place it in the "best" table */
628 best_table[i][0] = best & 0xFF;
629 best_table[i][1] = (best >> 8) & 0xFF;