| /freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | HTMLLogger.js | 56 function inflate(tmpl, data, parent, next) { function 72 inflate(c, data, clone, /*next=*/null); 78 return inflate(document.getElementById(tmpl.dataset.use), data, parent, next); 82 inflate(c, data, parent, next); 121 inflate(tmpl, data, tmpl.parentNode, tmpl.nextSibling);
|
| /freebsd/sys/contrib/zlib/test/ |
| H A D | infcover.c | 320 ret = inflate(&strm, Z_NO_FLUSH); assert(err == 9 || ret == err); in inf() 333 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_BUF_ERROR); in inf() 394 ret = inflate(Z_NULL, 0); assert(ret == Z_STREAM_ERROR); in cover_wrap() 422 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR); in cover_wrap() 423 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR); in cover_wrap() 433 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_STREAM_ERROR); in cover_wrap() 542 ret = inflate(&strm, Z_TREES); in try()
|
| H A D | example.c | 227 err = inflate(&d_stream, Z_NO_FLUSH); in test_inflate() 319 err = inflate(&d_stream, Z_NO_FLUSH); in test_large_inflate() 393 err = inflate(&d_stream, Z_NO_FLUSH); in test_sync() 400 err = inflate(&d_stream, Z_FINISH); in test_sync() 469 err = inflate(&d_stream, Z_NO_FLUSH); in test_dict_inflate()
|
| /freebsd/sys/contrib/zlib/ |
| H A D | ChangeLog | 12 - Use atomics to build inflate fixed tables once 16 - Zero inflate state on allocation 89 - Fix a bug when getting a gzip header extra field with inflate() 105 - Small speedup to inflate [psumbera] 108 - Don't compute check value for raw inflate if asked to validate 143 - Change macro name in inflate.c to avoid collision in VxWorks 243 - Update inflateBack() comments, since inflate() can be faster 295 - Improve inflate() documentation on the use of Z_FINISH 407 - Remove code from inflate.c and infback.c that is impossible to execute 408 - Test the inflate code with full coverage [all …]
|
| H A D | FAQ | 32 5. deflate() or inflate() returns Z_BUF_ERROR. 37 Z_BUF_ERROR is not fatal--another call to deflate() or inflate() can be 148 format using deflateInit2(). You can also request that inflate decode the 160 system without atomics (e.g. pre-C11), then inflate() and crc32() will not 231 30. Is there some simpler, easier to read version of inflate I can look at to 246 Yes. inflate() and deflate() will process any amount of data correctly. 247 Each call of inflate() or deflate() is limited to input and output chunks 252 inflate() or deflate(). The application can easily set up its own counters 253 updated after each call of inflate() or deflate() to count beyond 4 GB.
|
| H A D | uncompr.c | 66 err = inflate(&stream, Z_NO_FLUSH); in uncompress2_z()
|
| /freebsd/sys/contrib/zlib/doc/ |
| H A D | algorithm.txt | 58 2. Decompression algorithm (inflate) 67 inflate() sets up a first level table that covers some number of bits of 71 the value, else it will point to the next level table for which inflate() 79 codes are replicated many times in such a table. What inflate() does is 83 For inflate, which has 286 possible codes for the literal/length tree, the size 92 2.2 More details on the inflate table lookup 94 Ok, you want to know what this cleverly obfuscated inflate tree actually 110 inflate, two is enough. 189 There, I think that gives you a picture of what's going on. For inflate, the
|
| /freebsd/sys/contrib/zstd/zlibWrapper/ |
| H A D | README.md | 53 inflate(): hello, hello! 56 inflate with dictionary: hello, hello! 67 inflate(): hello, hello! 69 inflate with dictionary: hello, hello! 136 - inflate
|
| H A D | zstd_zlibwrapper.c | 740 int const result = inflate(strm, flush); in z_inflate() 771 inflate(strm, flush); in z_inflate() 803 { int const dErr = inflate(strm, Z_NO_FLUSH); in z_inflate() 822 inflate(strm, flush); in z_inflate()
|
| /freebsd/sys/netgraph/ |
| H A D | ng_deflate.c | 595 rtn = inflate(&priv->cx, Z_SYNC_FLUSH); in ng_deflate_decompress() 619 inflate(&priv->cx, Z_SYNC_FLUSH); in ng_deflate_decompress() 665 rtn = inflate(&priv->cx, Z_NO_FLUSH); in ng_deflate_decompress() 678 rtn = inflate(&priv->cx, Z_SYNC_FLUSH); in ng_deflate_decompress()
|
| /freebsd/sys/modules/zlib/ |
| H A D | Makefile | 13 SRCS+= inflate.c
|
| /freebsd/sys/cddl/boot/zfs/ |
| H A D | gzip.c | 75 if ((err = inflate(&zs, Z_FINISH)) != Z_STREAM_END) { in z_uncompress()
|
| /freebsd/lib/libz/ |
| H A D | Symbol.map | 97 inflate;
|
| H A D | Makefile | 33 SRCS+= inflate.c
|
| /freebsd/contrib/netbsd-tests/crypto/opencrypto/ |
| H A D | h_comp_zlib.c | 83 res = inflate(&z, Z_SYNC_FLUSH); in main()
|
| H A D | h_comp_zlib_rnd.c | 87 res = inflate(&z, Z_SYNC_FLUSH); in main()
|
| /freebsd/sys/geom/uzip/ |
| H A D | g_uzip_zlib.c | 73 err = (inflate(&zp->zs, Z_FINISH) != Z_STREAM_END) ? 1 : 0; in g_uzip_zlib_decompress()
|
| /freebsd/usr.sbin/ppp/ |
| H A D | deflate.c | 257 if ((res = inflate(&state->cx, flush)) != Z_OK) { in DeflateInput() 331 inflate(&state->cx, Z_SYNC_FLUSH); in DeflateInput() 380 if ((res = inflate(&state->cx, flush)) != Z_OK) { in DeflateDictSetup()
|
| /freebsd/sys/cddl/contrib/opensolaris/uts/common/zmod/ |
| H A D | zmod.c | 82 if ((err = inflate(&zs, Z_FINISH)) != Z_STREAM_END) { in z_uncompress()
|
| /freebsd/crypto/openssl/crypto/comp/ |
| H A D | c_zlib.c | 104 #define inflate p_inflate macro 197 err = inflate(&state->istream, Z_SYNC_FLUSH); in zlib_stateful_expand_block() 475 ret = inflate(zin, 0); in bio_zlib_read()
|
| /freebsd/sys/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | spl_zlib.c | 87 return (inflate(stream, finish)); in zlib_inflate()
|
| /freebsd/contrib/libfido2/src/ |
| H A D | compress.c | 76 if ((z = inflate(&zs, Z_FINISH)) != Z_STREAM_END) { in rfc1951_inflate()
|
| /freebsd/sys/opencrypto/ |
| H A D | cryptodeflate.c | 143 error = decomp ? inflate(&zbuf, Z_SYNC_FLUSH) : in deflate_global()
|
| /freebsd/contrib/ntp/sntp/libevent/test/ |
| H A D | regress_zlib.c | 157 res = inflate(p, getstate(state)); in zlib_input_filter()
|
| /freebsd/contrib/libevent/test/ |
| H A D | regress_zlib.c | 157 res = inflate(p, getstate(state)); in zlib_input_filter()
|