Searched defs:maxLen (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/common/bzip2/
H A Dhuffman.c66 Int32 maxLen )
120 if (j > maxLen) tooLong = True;
130 maxLen, which up to and including version 1.0.2 was 20 bits,
131 which is extremely unlikely. In version 1.0.3 maxLen was
155 Int32 maxLen,
161 for (n = minLen; n <= maxLen; n++) {
175 Int32 maxLen,
181 for (i = minLen; i <= maxLen; i++)
193 for (i = minLen; i <= maxLen; i++) {
198 for (i = minLen + 1; i <= maxLen;
152 BZ2_hbAssignCodes( Int32 *code, UChar *length, Int32 minLen, Int32 maxLen, Int32 alphaSize ) argument
170 BZ2_hbCreateDecodeTables( Int32 *limit, Int32 *base, Int32 *perm, UChar *length, Int32 minLen, Int32 maxLen, Int32 alphaSize ) argument
[all...]
H A Dcompress.c243 Int32 nSelectors, alphaSize, minLen, maxLen, selCtr; local
448 /* maxLen was changed from 20 to 17 in bzip2-1.0.3. See
484 maxLen = 0;
486 if (s->len[t][i] > maxLen) maxLen = s->len[t][i];
489 AssertH ( !(maxLen > 17 /*20*/ ), 3004 );
492 minLen, maxLen, alphaSize );
H A Ddecompress.c110 Int32 minLen, maxLen; local
334 maxLen = 0;
336 if (s->len[t][i] > maxLen) maxLen = s->len[t][i];
344 minLen, maxLen, alphaSize
/illumos-gate/usr/src/common/lzma/
H A DLzFind.c319 UInt32 *distances, UInt32 maxLen)
330 if (pb[maxLen] == cur[maxLen] && *pb == *cur)
336 if (maxLen < len)
338 *distances++ = maxLen = len;
350 UInt32 *distances, UInt32 maxLen)
373 if (maxLen < len)
375 *distances++ = maxLen = len;
472 #define GET_MATCHES_FOOTER(offset, maxLen) \
474 distances + offset, maxLen)
317 Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, UInt32 *distances, UInt32 maxLen) argument
348 GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, UInt32 *distances, UInt32 maxLen) argument
503 UInt32 hash2Value, delta2, maxLen, offset; local
536 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; local
583 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; local
[all...]

Completed in 62 milliseconds