Lines Matching full:best
298 /* uncompress a compressed symbol. When this function is called, the best table
554 int i, best, bestprofit; in find_best_token() local
557 best = 0; in find_best_token()
561 best = i; in find_best_token()
565 return best; in find_best_token()
568 /* this is the core of the algorithm: calculate the "best" table */
571 int i, best; in optimize_result() local
581 /* find the token with the best profit value */ in optimize_result()
582 best = find_best_token(); in optimize_result()
583 if (token_profit[best] == 0) in optimize_result()
586 /* place it in the "best" table */ in optimize_result()
588 best_table[i][0] = best & 0xFF; in optimize_result()
589 best_table[i][1] = (best >> 8) & 0xFF; in optimize_result()