Searched refs:minLen (Results 1 - 4 of 4) sorted by relevance
/illumos-gate/usr/src/common/bzip2/ |
H A D | huffman.c | 154 Int32 minLen, 161 for (n = minLen; n <= maxLen; n++) { 174 Int32 minLen, 181 for (i = minLen; i <= maxLen; i++) 193 for (i = minLen; i <= maxLen; i++) { 198 for (i = minLen + 1; i <= maxLen; i++) 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
|
H A D | compress.c | 243 Int32 nSelectors, alphaSize, minLen, maxLen, selCtr; local 483 minLen = 32; 487 if (s->len[t][i] < minLen) minLen = s->len[t][i]; 490 AssertH ( !(minLen < 1), 3005 ); 492 minLen, maxLen, alphaSize );
|
H A D | decompress.c | 110 Int32 minLen, maxLen; local 333 minLen = 32; 337 if (s->len[t][i] < minLen) minLen = s->len[t][i]; 344 minLen, maxLen, alphaSize 346 s->minLens[t] = minLen;
|
/illumos-gate/usr/src/common/lzma/ |
H A D | LzFind.c | 462 #define GET_MATCHES_HEADER2(minLen, ret_op) \ 464 lenLimit = p->lenLimit; { if (lenLimit < minLen) { MatchFinder_MovePos(p); ret_op; }} \ 467 #define GET_MATCHES_HEADER(minLen) GET_MATCHES_HEADER2(minLen, return 0) 468 #define SKIP_HEADER(minLen) GET_MATCHES_HEADER2(minLen, continue)
|
Completed in 61 milliseconds