Lines Matching refs:inend
367 size_t instart, size_t inend, in ZopfliLZ77Greedy() argument
388 if (instart == inend) return; in ZopfliLZ77Greedy()
391 ZopfliWarmupHash(in, windowstart, inend, h); in ZopfliLZ77Greedy()
393 ZopfliUpdateHash(in, i, inend, h); in ZopfliLZ77Greedy()
396 for (i = instart; i < inend; i++) { in ZopfliLZ77Greedy()
397 ZopfliUpdateHash(in, i, inend, h); in ZopfliLZ77Greedy()
399 ZopfliFindLongestMatch(s, h, in, i, inend, ZOPFLI_MAX_MATCH, dummysublen, in ZopfliLZ77Greedy()
422 ZopfliVerifyLenDist(in, inend, i - 1, dist, leng); in ZopfliLZ77Greedy()
425 assert(i < inend); in ZopfliLZ77Greedy()
427 ZopfliUpdateHash(in, i, inend, h); in ZopfliLZ77Greedy()
443 ZopfliVerifyLenDist(in, inend, i, dist, leng); in ZopfliLZ77Greedy()
450 assert(i < inend); in ZopfliLZ77Greedy()
452 ZopfliUpdateHash(in, i, inend, h); in ZopfliLZ77Greedy()