Lines Matching refs:leng
370 unsigned short leng; in ZopfliLZ77Greedy() local
400 &dist, &leng); in ZopfliLZ77Greedy()
401 lengthscore = GetLengthScore(leng, dist); in ZopfliLZ77Greedy()
410 if (lengthscore >= ZOPFLI_MIN_MATCH && leng < ZOPFLI_MAX_MATCH) { in ZopfliLZ77Greedy()
412 prev_length = leng; in ZopfliLZ77Greedy()
418 leng = prev_length; in ZopfliLZ77Greedy()
422 ZopfliVerifyLenDist(in, inend, i - 1, dist, leng); in ZopfliLZ77Greedy()
423 ZopfliStoreLitLenDist(leng, dist, store); in ZopfliLZ77Greedy()
424 for (j = 2; j < leng; j++) { in ZopfliLZ77Greedy()
432 else if (lengthscore >= ZOPFLI_MIN_MATCH && leng < ZOPFLI_MAX_MATCH) { in ZopfliLZ77Greedy()
434 prev_length = leng; in ZopfliLZ77Greedy()
443 ZopfliVerifyLenDist(in, inend, i, dist, leng); in ZopfliLZ77Greedy()
444 ZopfliStoreLitLenDist(leng, dist, store); in ZopfliLZ77Greedy()
446 leng = 1; in ZopfliLZ77Greedy()
449 for (j = 1; j < leng; j++) { in ZopfliLZ77Greedy()