Home
last modified time | relevance | path

Searched refs:uInt (Results 1 – 25 of 26) sorted by relevance

12

/f-stack/freebsd/contrib/zlib/
H A Ddeflate.h116 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 Dzutil.c37 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 Dcompress.c31 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 Duncompr.c35 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 Dzlib.h81 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 Ddeflate.c209 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 Dzutil.h234 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 Dzconf.h160 # define uInt z_uInt macro
399 typedef unsigned int uInt; /* 16 bits or more */ typedef
410 typedef uInt FAR uIntf;
H A Dgzguts.h122 extern voidp malloc OF((uInt size));
H A Dadler32.c137 uInt len;
H A Dzconf.h.in154 # define uInt z_uInt macro
393 typedef unsigned int uInt; /* 16 bits or more */ typedef
404 typedef uInt FAR uIntf;
H A Dcrc32.c240 uInt len;
H A Dinflate.c261 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 Dinfback.c64 state->wbits = (uInt)windowBits;
H A Dtrees.c1103 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
/f-stack/freebsd/contrib/zstd/zlibWrapper/examples/
H A Dexample_original.c311 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 Dexample.c319 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 Dzwrapbench.c319 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 Dfitblk.c85 def->avail_in = (uInt)fread(raw, 1, RAWLEN, in); in partcompress()
/f-stack/freebsd/contrib/zlib/test/
H A Dexample.c294 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 Dspl-zlib.c103 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 Dspl_zlib.c151 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 Dgzguts.h129 extern voidp malloc OF((uInt size));
H A Dzstd_zlibwrapper.c109 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 Dfileio.c1045 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()

12