Lines Matching refs:curr_length
352 int curr_length; in VP8LHashChainFill() local
355 curr_length = FindMatchLength(argb_start - xsize, argb_start, in VP8LHashChainFill()
357 if (curr_length > best_length) { in VP8LHashChainFill()
358 best_length = curr_length; in VP8LHashChainFill()
364 curr_length = in VP8LHashChainFill()
366 if (curr_length > best_length) { in VP8LHashChainFill()
367 best_length = curr_length; in VP8LHashChainFill()
377 int curr_length; in VP8LHashChainFill() local
382 curr_length = VP8LVectorMismatch(argb + pos, argb_start, max_len); in VP8LHashChainFill()
383 if (best_length < curr_length) { in VP8LHashChainFill()
384 best_length = curr_length; in VP8LHashChainFill()
652 int curr_length = 0; in BackwardReferencesLz77Box() local
663 curr_length += in BackwardReferencesLz77Box()
668 curr_length += counts_j_offset; in BackwardReferencesLz77Box()
671 } while (curr_length <= MAX_LENGTH && j < pix_count && in BackwardReferencesLz77Box()
673 if (best_length < curr_length) { in BackwardReferencesLz77Box()
676 if (curr_length >= MAX_LENGTH) { in BackwardReferencesLz77Box()
680 best_length = curr_length; in BackwardReferencesLz77Box()