| /f-stack/freebsd/contrib/zlib/ |
| H A D | deflate.h | 116 uInt w_bits; /* log2(w_size) (8..16) */ 117 uInt w_mask; /* w_size - 1 */ 144 uInt hash_bits; /* log2(hash_size) */ 145 uInt hash_mask; /* hash_size-1 */ 147 uInt hash_shift; 166 uInt prev_length; 171 uInt max_chain_length; 177 uInt max_lazy_match; 191 uInt good_match; 222 uInt lit_bufsize; [all …]
|
| H A D | zutil.c | 37 switch ((int)(sizeof(uInt))) { in zlibCompileFlags() 152 uInt len; 163 uInt len; 165 uInt j; 175 uInt len; 280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() 300 extern voidp malloc OF((uInt size)); 301 extern voidp calloc OF((uInt items, uInt size)); 311 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
|
| H A D | compress.c | 31 const uInt max = (uInt)-1; 51 stream.avail_out = left > (uLong)max ? max : (uInt)left; 55 stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen;
|
| H A D | uncompr.c | 35 const uInt max = (uInt)-1; 63 stream.avail_out = left > (uLong)max ? max : (uInt)left; 67 stream.avail_in = len > (uLong)max ? max : (uInt)len;
|
| H A D | zlib.h | 81 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 88 uInt avail_in; /* number of bytes available at next_in */ 92 uInt avail_out; /* remaining free space at next_out */ 120 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ 121 uInt extra_max; /* space at extra (only when reading header) */ 123 uInt name_max; /* space at name (only when reading header) */ 125 uInt comm_max; /* space at comment (only when reading header) */ 613 uInt dictLength)); 657 uInt *dictLength)); 887 uInt dictLength)); [all …]
|
| H A D | deflate.c | 209 uInt wsize = s->w_size; 382 uInt dictLength; 385 uInt str, n; 451 uInt *dictLength; 454 uInt len; 721 uInt b; 820 uInt level_flags; 1255 uInt wmask = s->w_mask; 1378 if ((uInt)best_len <= s->lookahead) return (uInt)best_len; 1438 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead; [all …]
|
| H A D | zutil.h | 234 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 235 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 236 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
|
| H A D | zconf.h | 160 # define uInt z_uInt macro 399 typedef unsigned int uInt; /* 16 bits or more */ typedef 410 typedef uInt FAR uIntf;
|
| H A D | gzguts.h | 122 extern voidp malloc OF((uInt size));
|
| H A D | adler32.c | 137 uInt len;
|
| H A D | zconf.h.in | 154 # define uInt z_uInt macro 393 typedef unsigned int uInt; /* 16 bits or more */ typedef 404 typedef uInt FAR uIntf;
|
| H A D | crc32.c | 240 uInt len;
|
| H A D | inflate.c | 261 if (bits > 16 || state->bits + (uInt)bits > 32) return Z_STREAM_ERROR; 264 state->bits += (uInt)bits; 1294 uInt *dictLength; 1317 uInt dictLength;
|
| H A D | infback.c | 64 state->wbits = (uInt)windowBits;
|
| H A D | trees.c | 1103 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
|
| /f-stack/freebsd/contrib/zstd/zlibWrapper/examples/ |
| H A D | example_original.c | 311 c_stream.avail_out = (uInt)comprLen; 317 c_stream.avail_in = (uInt)uncomprLen; 328 c_stream.avail_in = (uInt)comprLen/2; 335 c_stream.avail_in = (uInt)uncomprLen; 365 d_stream.avail_in = (uInt)comprLen; 398 uInt len = (uInt)strlen(hello)+1; 410 c_stream.avail_out = (uInt)*comprLen; 450 d_stream.avail_out = (uInt)uncomprLen; 494 c_stream.avail_out = (uInt)comprLen; 525 d_stream.avail_in = (uInt)comprLen; [all …]
|
| H A D | example.c | 319 c_stream.avail_out = (uInt)comprLen; 325 c_stream.avail_in = (uInt)uncomprLen; 336 c_stream.avail_in = (uInt)comprLen/2; 343 c_stream.avail_in = (uInt)uncomprLen; 373 d_stream.avail_in = (uInt)comprLen; 406 uInt len = (uInt)strlen(hello)+1; 418 c_stream.avail_out = (uInt)*comprLen; 458 d_stream.avail_out = (uInt)uncomprLen; 502 c_stream.avail_out = (uInt)comprLen; 533 d_stream.avail_in = (uInt)comprLen; [all …]
|
| H A D | zwrapbench.c | 319 def.avail_in = (uInt)blockTable[blockNb].srcSize; in BMK_benchMem() 322 def.avail_out = (uInt)blockTable[blockNb].cRoom; in BMK_benchMem() 350 def.avail_in = (uInt)blockTable[blockNb].srcSize; in BMK_benchMem() 353 def.avail_out = (uInt)blockTable[blockNb].cRoom; in BMK_benchMem() 455 inf.avail_in = (uInt)blockTable[blockNb].cSize; in BMK_benchMem() 458 inf.avail_out = (uInt)blockTable[blockNb].srcSize; in BMK_benchMem() 487 inf.avail_in = (uInt)blockTable[blockNb].cSize; in BMK_benchMem() 490 inf.avail_out = (uInt)blockTable[blockNb].srcSize; in BMK_benchMem()
|
| H A D | fitblk.c | 85 def->avail_in = (uInt)fread(raw, 1, RAWLEN, in); in partcompress()
|
| /f-stack/freebsd/contrib/zlib/test/ |
| H A D | example.c | 294 c_stream.avail_out = (uInt)comprLen; 300 c_stream.avail_in = (uInt)uncomprLen; 311 c_stream.avail_in = (uInt)comprLen/2; 318 c_stream.avail_in = (uInt)uncomprLen; 348 d_stream.avail_in = (uInt)comprLen; 381 uInt len = (uInt)strlen(hello)+1; 393 c_stream.avail_out = (uInt)*comprLen; 433 d_stream.avail_out = (uInt)uncomprLen; 477 c_stream.avail_out = (uInt)comprLen; 508 d_stream.avail_in = (uInt)comprLen; [all …]
|
| /f-stack/freebsd/contrib/openzfs/module/os/linux/spl/ |
| H A D | spl-zlib.c | 103 stream.avail_in = (uInt)sourceLen; in z_compress_level() 105 stream.avail_out = (uInt)*destLen; in z_compress_level() 157 stream.avail_in = (uInt)sourceLen; in z_uncompress() 159 stream.avail_out = (uInt)*destLen; in z_uncompress()
|
| /f-stack/freebsd/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | spl_zlib.c | 151 stream.avail_in = (uInt)sourceLen; in z_compress_level() 153 stream.avail_out = (uInt)*destLen; in z_compress_level() 207 stream.avail_in = (uInt)sourceLen; in z_uncompress() 209 stream.avail_out = (uInt)*destLen; in z_uncompress()
|
| /f-stack/freebsd/contrib/zstd/zlibWrapper/ |
| H A D | gzguts.h | 129 extern voidp malloc OF((uInt size));
|
| H A D | zstd_zlibwrapper.c | 109 void* address = strm->zalloc(strm->opaque, 1, (uInt)size); in ZWRAP_allocFunction() 330 uInt dictLength)) in z_deflateSetDictionary() 686 uInt dictLength)) in z_inflateSetDictionary() 1001 uInt *dictLength)) in z_inflateGetDictionary() 1147 ZEXTERN uLong ZEXPORT z_adler32 OF((uLong adler, const Bytef *buf, uInt len)) in z_adler32() 1152 ZEXTERN uLong ZEXPORT z_crc32 OF((uLong crc, const Bytef *buf, uInt len)) in z_crc32()
|
| /f-stack/freebsd/contrib/zstd/programs/ |
| H A D | fileio.c | 1045 strm.avail_out = (uInt)ress->dstBufferSize; in FIO_compressGzFrame() 1054 strm.avail_in = (uInt)inSize; in FIO_compressGzFrame() 1065 strm.avail_out = (uInt)ress->dstBufferSize; in FIO_compressGzFrame() 1085 strm.avail_out = (uInt)ress->dstBufferSize; in FIO_compressGzFrame() 2193 strm.avail_out = (uInt)ress->dstBufferSize; in FIO_decompressGzFrame() 2194 strm.avail_in = (uInt)ress->srcBufferLoaded; in FIO_decompressGzFrame() 2203 strm.avail_in = (uInt)ress->srcBufferLoaded; in FIO_decompressGzFrame() 2219 strm.avail_out = (uInt)ress->dstBufferSize; in FIO_decompressGzFrame()
|