Lines Matching defs:best
287 /* uncompress a compressed symbol. When this function is called, the best table
564 int i, best, bestprofit;
567 best = 0;
571 best = i;
575 return best;
578 /* this is the core of the algorithm: calculate the "best" table */
581 int i, best;
591 /* find the token with the best profit value */
592 best = find_best_token();
593 if (token_profit[best] == 0)
596 /* place it in the "best" table */
598 best_table[i][0] = best & 0xFF;
599 best_table[i][1] = (best >> 8) & 0xFF;