Searched refs:maxLen (Results 1 – 3 of 3) sorted by relevance
| /oneTBB/examples/graph/fgbzip2/ |
| H A D | huffman.cpp | 111 void BZ2_hbMakeCodeLengths(UChar *len, Int32 *freq, Int32 alphaSize, Int32 maxLen) { in BZ2_hbMakeCodeLengths() argument 172 if (j > maxLen) in BZ2_hbMakeCodeLengths() 205 void BZ2_hbAssignCodes(Int32 *code, UChar *length, Int32 minLen, Int32 maxLen, Int32 alphaSize) { in BZ2_hbAssignCodes() argument 209 for (j = minLen; j <= maxLen; j++) { in BZ2_hbAssignCodes() 225 Int32 maxLen, in BZ2_hbCreateDecodeTables() argument 230 for (i = minLen; i <= maxLen; i++) in BZ2_hbCreateDecodeTables() 249 for (i = minLen; i <= maxLen; i++) { in BZ2_hbCreateDecodeTables() 254 for (i = minLen + 1; i <= maxLen; i++) in BZ2_hbCreateDecodeTables()
|
| H A D | compress.cpp | 278 Int32 nSelectors, alphaSize, minLen, maxLen, selCtr; in sendMTFValues() local 612 maxLen = 0; in sendMTFValues() 614 if (s->len[j][i] > maxLen) in sendMTFValues() 615 maxLen = s->len[j][i]; in sendMTFValues() 619 AssertH(!(maxLen > 17 /*20*/), 3004); in sendMTFValues() 621 BZ2_hbAssignCodes(&(s->code[j][0]), &(s->len[j][0]), minLen, maxLen, alphaSize); in sendMTFValues()
|
| H A D | decompress.cpp | 150 Int32 minLen, maxLen; in BZ2_decompress() local 401 maxLen = 0; in BZ2_decompress() 403 if (s->len[j][i] > maxLen) in BZ2_decompress() 404 maxLen = s->len[j][i]; in BZ2_decompress() 413 maxLen, in BZ2_decompress()
|