Lines Matching refs:curr_length
320 int curr_length; in VP8LHashChainFill() local
323 curr_length = FindMatchLength(argb_start - xsize, argb_start, in VP8LHashChainFill()
325 if (curr_length > best_length) { in VP8LHashChainFill()
326 best_length = curr_length; in VP8LHashChainFill()
332 curr_length = in VP8LHashChainFill()
334 if (curr_length > best_length) { in VP8LHashChainFill()
335 best_length = curr_length; in VP8LHashChainFill()
345 int curr_length; in VP8LHashChainFill() local
350 curr_length = VP8LVectorMismatch(argb + pos, argb_start, max_len); in VP8LHashChainFill()
351 if (best_length < curr_length) { in VP8LHashChainFill()
352 best_length = curr_length; in VP8LHashChainFill()
620 int curr_length = 0; in BackwardReferencesLz77Box() local
631 curr_length += in BackwardReferencesLz77Box()
636 curr_length += counts_j_offset; in BackwardReferencesLz77Box()
639 } while (curr_length <= MAX_LENGTH && j < pix_count && in BackwardReferencesLz77Box()
641 if (best_length < curr_length) { in BackwardReferencesLz77Box()
644 if (curr_length >= MAX_LENGTH) { in BackwardReferencesLz77Box()
648 best_length = curr_length; in BackwardReferencesLz77Box()