Lines Matching refs:score_t
462 score_t cost; // bit cost
463 score_t error; // distortion = sum of (|coeff_i| - level_i * Q_i)^2
480 static WEBP_INLINE score_t RDScoreTrellis(int lambda, score_t rate, in RDScoreTrellis()
481 score_t distortion) { in RDScoreTrellis()
495 score_t best_score; in TrellisQuantizeBlock()
501 score_t cost; in TrellisQuantizeBlock()
502 score_t max_error; in TrellisQuantizeBlock()
549 score_t cur_score = MAX_COST; in TrellisQuantizeBlock()
573 const score_t total_error = prev->error - delta_error; in TrellisQuantizeBlock()
574 score_t cost, base_cost, score; in TrellisQuantizeBlock()
961 score_t best_score = MAX_COST; in DistoRefine()
969 const score_t score = VP8SSE16x16(src, ref); in DistoRefine()
981 score_t score_i4 = (score_t)I4_PENALTY; in DistoRefine()
987 score_t best_sub_score = MAX_COST; in DistoRefine()
995 const score_t score = VP8SSE4x4(src, ref); in DistoRefine()