Searched refs:minLen (Results 1 – 4 of 4) sorted by relevance
/titanic_50/usr/src/common/bzip2/ |
H A D | huffman.c | 154 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 D | compress.c | 243 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 D | decompress.c | 110 Int32 minLen, maxLen; in BZ2_decompress() local 333 minLen = 32; in BZ2_decompress() 337 if (s->len[t][i] < minLen) minLen = s->len[t][i]; in BZ2_decompress() 344 minLen, maxLen, alphaSize in BZ2_decompress() 346 s->minLens[t] = minLen; in BZ2_decompress()
|
/titanic_50/usr/src/common/lzma/ |
H A D | LzFind.c | 462 #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
|