Searched refs:ZOPFLI_MIN_MATCH (Results 1 – 4 of 4) sorted by relevance
186 if (*limit == ZOPFLI_MAX_MATCH && *length >= ZOPFLI_MIN_MATCH) { in TryGetFromLongestMatchCache()221 s->lmc->dist[lmcpos] = length < ZOPFLI_MIN_MATCH ? 0 : distance; in StoreInLongestMatchCache()222 s->lmc->length[lmcpos] = length < ZOPFLI_MIN_MATCH ? 0 : length; in StoreInLongestMatchCache()259 assert(limit >= ZOPFLI_MIN_MATCH); in ZopfliFindLongestMatch()262 if (size - pos < ZOPFLI_MIN_MATCH) { in ZopfliFindLongestMatch()410 if (lengthscore >= ZOPFLI_MIN_MATCH && leng < ZOPFLI_MAX_MATCH) { in ZopfliLZ77Greedy()432 else if (lengthscore >= ZOPFLI_MIN_MATCH && leng < ZOPFLI_MAX_MATCH) { in ZopfliLZ77Greedy()442 if (lengthscore >= ZOPFLI_MIN_MATCH) { in ZopfliLZ77Greedy()
98 UpdateHashValue(h, pos + ZOPFLI_MIN_MATCH <= end ? in ZopfliUpdateHash()99 array[pos + ZOPFLI_MIN_MATCH - 1] : 0); in ZopfliUpdateHash()120 h->val2 = ((h->same[hpos] - ZOPFLI_MIN_MATCH) & 255) ^ h->val; in ZopfliUpdateHash()
33 #define ZOPFLI_MIN_MATCH 3 macro
365 if (length >= ZOPFLI_MIN_MATCH) { in FollowPath()