Lines Matching defs:best
287 /* uncompress a compressed symbol. When this function is called, the best table
549 int i, best, bestprofit;
552 best = 0;
556 best = i;
560 return best;
563 /* this is the core of the algorithm: calculate the "best" table */
566 int i, best;
576 /* find the token with the best profit value */
577 best = find_best_token();
578 if (token_profit[best] == 0)
581 /* place it in the "best" table */
583 best_table[i][0] = best & 0xFF;
584 best_table[i][1] = (best >> 8) & 0xFF;