Searched refs:minLen (Results 1 – 5 of 5) sorted by relevance
/openbmc/u-boot/lib/bzip2/ |
H A D | bzlib_huffman.c | 178 Int32 minLen, in BZ2_hbAssignCodes() argument 185 for (n = minLen; n <= maxLen; n++) { in BZ2_hbAssignCodes() 198 Int32 minLen, in BZ2_hbCreateDecodeTables() argument 205 for (i = minLen; i <= maxLen; i++) in BZ2_hbCreateDecodeTables() 217 for (i = minLen; i <= maxLen; i++) { in BZ2_hbCreateDecodeTables() 222 for (i = minLen + 1; i <= maxLen; i++) in BZ2_hbCreateDecodeTables()
|
H A D | bzlib_compress.c | 282 Int32 nSelectors, alphaSize, minLen, maxLen, selCtr; in sendMTFValues() local 523 minLen = 32; in sendMTFValues() 527 if (s->len[t][i] < minLen) minLen = s->len[t][i]; in sendMTFValues() 530 AssertH ( !(minLen < 1), 3005 ); in sendMTFValues() 532 minLen, maxLen, alphaSize ); in sendMTFValues()
|
H A D | bzlib_decompress.c | 153 Int32 minLen, maxLen; in BZ2_decompress() local 376 minLen = 32; in BZ2_decompress() 380 if (s->len[t][i] < minLen) minLen = s->len[t][i]; in BZ2_decompress() 387 minLen, maxLen, alphaSize in BZ2_decompress() 389 s->minLens[t] = minLen; in BZ2_decompress()
|
/openbmc/linux/lib/ |
H A D | decompress_bunzip2.c | 87 int minLen, maxLen; member 237 int minLen, maxLen, pp; in get_next_block() local 273 minLen = maxLen = length[0]; in get_next_block() 278 else if (length[i] < minLen) in get_next_block() 279 minLen = length[i]; in get_next_block() 298 hufGroup->minLen = minLen; in get_next_block() 309 for (i = minLen; i <= maxLen; i++) { in get_next_block() 325 for (i = minLen; i < maxLen; i++) { in get_next_block() 344 base[minLen] = 0; in get_next_block() 396 i = hufGroup->minLen; in get_next_block()
|
/openbmc/linux/drivers/scsi/ |
H A D | scsi_debug.c | 5872 int minLen = length > 15 ? 15 : length; in scsi_debug_write_info() local 5876 memcpy(arr, buffer, minLen); in scsi_debug_write_info() 5877 arr[minLen] = '\0'; in scsi_debug_write_info()
|