| /titanic_53/usr/src/contrib/zlib/ |
| H A D | zlib.h | 970 int windowBits)); 1786 int windowBits, int memLevel, 1789 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, 1791 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, 1800 # define z_deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1801 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ 1803 # define z_inflateInit2(strm, windowBits) \ argument 1804 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \ 1806 # define z_inflateBackInit(strm, windowBits, window) \ argument 1807 inflateBackInit_((strm), (windowBits), (window), \ [all …]
|
| H A D | inflate.c | 155 int ZEXPORT inflateReset2(z_streamp strm, int windowBits) in inflateReset2() argument 165 if (windowBits < 0) { in inflateReset2() 167 windowBits = -windowBits; in inflateReset2() 170 wrap = (windowBits >> 4) + 5; in inflateReset2() 172 if (windowBits < 48) in inflateReset2() 173 windowBits &= 15; in inflateReset2() 178 if (windowBits && (windowBits < 8 || windowBits > 15)) in inflateReset2() 180 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { in inflateReset2() 187 state->wbits = (unsigned)windowBits; in inflateReset2() 191 int ZEXPORT inflateInit2_(z_streamp strm, int windowBits, const char *version, in inflateInit2_() argument [all …]
|
| H A D | infback.c | 28 int ZEXPORT inflateBackInit_(z_streamp strm, int windowBits, in inflateBackInit_() argument 37 windowBits < 8 || windowBits > 15) in inflateBackInit_() 60 state->wbits = (uInt)windowBits; in inflateBackInit_() 61 state->wsize = 1U << windowBits; in inflateBackInit_()
|
| H A D | deflate.c | 241 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument 246 int windowBits; 284 if (windowBits < 0) { /* suppress zlib wrapper */ 286 windowBits = -windowBits; 289 else if (windowBits > 15) { 291 windowBits -= 16; 295 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || 296 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) { 299 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */ 308 s->w_bits = (uInt)windowBits;
|
| H A D | ChangeLog | 86 - Fix inflateInit2() bug when windowBits is 16 or 32 90 - Fix bug that accepted invalid zlib header when windowBits is zero 570 - Use zlib header window size if windowBits is 0 in inflateInit2() 975 - Be more strict when checking inflateInit2's windowBits parameter 977 - Add gzip wrapper option to deflateInit2 using windowBits 1108 - force windowBits > 8 to avoid a bug in the encoder for a window size
|
| /titanic_53/usr/src/boot/lib/libz/ |
| H A D | zlib.h | 903 int windowBits)); 1638 int windowBits, int memLevel, 1641 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, 1643 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, 1651 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1652 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ 1654 #define inflateInit2(strm, windowBits) \ argument 1655 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \ 1657 #define inflateBackInit(strm, windowBits, window) \ argument 1658 inflateBackInit_((strm), (windowBits), (window), \
|
| H A D | inflate.c | 142 int ZEXPORT inflateReset2(strm, windowBits) in inflateReset2() argument 144 int windowBits; 154 if (windowBits < 0) { 156 windowBits = -windowBits; 159 wrap = (windowBits >> 4) + 1; 161 if (windowBits < 48) 162 windowBits &= 15; 167 if (windowBits && (windowBits < 8 || windowBits > 15)) 169 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { 176 state->wbits = (unsigned)windowBits; [all …]
|
| H A D | infback.c | 28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) in inflateBackInit_() argument 30 int windowBits; 41 windowBits < 8 || windowBits > 15) 64 state->wbits = windowBits; 65 state->wsize = 1U << windowBits;
|
| H A D | deflate.c | 213 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument 218 int windowBits; 261 if (windowBits < 0) { /* suppress zlib wrapper */ 263 windowBits = -windowBits; 266 else if (windowBits > 15) { 268 windowBits -= 16; 272 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || 276 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */ 284 s->w_bits = windowBits;
|
| H A D | ChangeLog | 464 - Use zlib header window size if windowBits is 0 in inflateInit2() 869 - Be more strict when checking inflateInit2's windowBits parameter 871 - Add gzip wrapper option to deflateInit2 using windowBits 1002 - force windowBits > 8 to avoid a bug in the encoder for a window size
|
| /titanic_53/usr/src/uts/common/io/ppp/spppcomp/ |
| H A D | zlib.h | 1178 int windowBits, int memLevel, int strategy, 1180 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, 1186 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1187 deflateInit2_((strm), (level), (method), (windowBits), (memLevel), \ 1189 #define inflateInit2(strm, windowBits) \ argument 1190 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof (z_stream))
|
| H A D | zlib.c | 850 int deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument 855 int windowBits; 893 if (windowBits < 0) { /* undocumented feature: suppress zlib header */ 895 windowBits = -windowBits; 898 windowBits <= 8 || windowBits > 15 || level < 0 || level > 9 || 909 s->w_bits = windowBits;
|
| /titanic_53/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
| H A D | zlib.h | 444 int windowBits, 536 int windowBits));
|
| H A D | zlib.c | 589 int deflateInit2 (strm, level, method, windowBits, memLevel, in deflateInit2() argument 594 int windowBits; 610 if (windowBits < 0) { /* undocumented feature: suppress zlib header */ 612 windowBits = -windowBits; 615 windowBits < 8 || windowBits > 15 || level < 1 || level > 9) { 624 s->w_bits = windowBits;
|
| /titanic_53/usr/src/contrib/ast/src/cmd/INIT/ |
| H A D | ratz.c | 575 #define inflateInit2(strm, windowBits) \ argument 576 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream)) 2370 int ZEXPORT inflateInit2_(strm, windowBits, version, stream_size) in inflateInit2_() argument 2372 int windowBits; 2393 if (windowBits < 0) { 2395 windowBits = -windowBits; 2398 state->wrap = (windowBits >> 4) + 1; 2400 if (windowBits < 48) windowBits &= 15; 2403 if (windowBits < 8 || windowBits > 15) { 2408 state->wbits = (unsigned)windowBits;
|