Home
last modified time | relevance | path

Searched refs:minLen (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/common/bzip2/
H A Dhuffman.c154 Int32 minLen, in BZ2_hbAssignCodes() argument
161 for (n = minLen; n <= maxLen; n++) { in BZ2_hbAssignCodes()
174 Int32 minLen, in BZ2_hbCreateDecodeTables() argument
181 for (i = minLen; i <= maxLen; i++) in BZ2_hbCreateDecodeTables()
193 for (i = minLen; i <= maxLen; i++) { in BZ2_hbCreateDecodeTables()
198 for (i = minLen + 1; i <= maxLen; i++) in BZ2_hbCreateDecodeTables()
H A Dcompress.c243 Int32 nSelectors, alphaSize, minLen, maxLen, selCtr; in sendMTFValues() local
483 minLen = 32; in sendMTFValues()
487 if (s->len[t][i] < minLen) minLen = s->len[t][i]; in sendMTFValues()
490 AssertH ( !(minLen < 1), 3005 ); in sendMTFValues()
492 minLen, maxLen, alphaSize ); in sendMTFValues()
H A Ddecompress.c111 Int32 minLen, maxLen; in BZ2_decompress() local
334 minLen = 32; in BZ2_decompress()
338 if (s->len[t][i] < minLen) minLen = s->len[t][i]; in BZ2_decompress()
345 minLen, maxLen, alphaSize in BZ2_decompress()
347 s->minLens[t] = minLen; in BZ2_decompress()
/illumos-gate/usr/src/common/lzma/
H A DLzFind.c462 #define GET_MATCHES_HEADER2(minLen, ret_op) \ argument
464 lenLimit = p->lenLimit; { if (lenLimit < minLen) { MatchFinder_MovePos(p); ret_op; }} \
467 #define GET_MATCHES_HEADER(minLen) GET_MATCHES_HEADER2(minLen, return 0) argument
468 #define SKIP_HEADER(minLen) GET_MATCHES_HEADER2(minLen, continue) argument