HomeSort by: relevance | last modified time | path
    Searched defs:bestlength (Results 1 - 3 of 3) sorted by relevancy

  /src/external/zlib/pigz/dist/zopfli/
cache.c 53 unsigned bestlength = 0; local
67 bestlength = i;
73 assert(bestlength == length);
74 cache[(ZOPFLI_CACHE_LENGTH - 1) * 3] = bestlength - 3;
76 assert(bestlength <= length);
78 assert(bestlength == ZopfliMaxCachedSublen(lmc, pos, length));
lz77.c 221 unsigned short bestlength = 1; local
285 /* Testing the byte at position bestlength first, goes slightly faster. */
286 if (pos + bestlength >= size
287 || *(scan + bestlength) == *(match + bestlength)) {
303 if (currentlength > bestlength) {
306 for (j = bestlength + 1; j <= currentlength; j++) {
311 bestlength = currentlength;
319 if (hhead != h->head2 && bestlength >= h->same[hpos] &&
342 StoreInLongestMatchCache(s, pos, limit, sublen, bestdist, bestlength);
    [all...]
squeeze.c 160 int bestlength = 0; /* length that has lowest cost in the cost model */ local
178 bestlength = i;
192 return costmodel(bestlength, bestdist, costcontext);

Completed in 59 milliseconds