Lines Matching full:best
295 /* uncompress a compressed symbol. When this function is called, the best table
588 int i, best, bestprofit; in find_best_token() local
591 best = 0; in find_best_token()
595 best = i; in find_best_token()
599 return best; in find_best_token()
602 /* this is the core of the algorithm: calculate the "best" table */
605 int i, best; in optimize_result() local
615 /* find the token with the best profit value */ in optimize_result()
616 best = find_best_token(); in optimize_result()
617 if (token_profit[best] == 0) in optimize_result()
620 /* place it in the "best" table */ in optimize_result()
622 best_table[i][0] = best & 0xFF; in optimize_result()
623 best_table[i][1] = (best >> 8) & 0xFF; in optimize_result()