| /src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/ |
| Inflater.cs | 16 /// Implements a data decompressor, using the inflate algorithm in the ZLib dll
25 private static extern int inflate(ref ZStream sz, int flush);
method in class:DotZLib.Inflater 67 err = inflate(ref _ztream, (int)FlushTypes.None);
72 err = inflate(ref _ztream, (int)FlushTypes.None);
89 err = inflate(ref _ztream, (int)FlushTypes.Finish);
99 /// Closes the internal zlib inflate stream
|
| /src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/ |
| Inflater.cs | 16 /// Implements a data decompressor, using the inflate algorithm in the ZLib dll
25 private static extern int inflate(ref ZStream sz, int flush);
method in class:DotZLib.Inflater 67 err = inflate(ref _ztream, (int)FlushTypes.None);
72 err = inflate(ref _ztream, (int)FlushTypes.None);
89 err = inflate(ref _ztream, (int)FlushTypes.Finish);
99 /// Closes the internal zlib inflate stream
|
| /src/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/ |
| Inflater.cs | 16 /// Implements a data decompressor, using the inflate algorithm in the ZLib dll
25 private static extern int inflate(ref ZStream sz, int flush);
method in class:DotZLib.Inflater 67 err = inflate(ref _ztream, (int)FlushTypes.None);
72 err = inflate(ref _ztream, (int)FlushTypes.None);
89 err = inflate(ref _ztream, (int)FlushTypes.Finish);
99 /// Closes the internal zlib inflate stream
|
| /src/external/gpl3/gdb.old/dist/zlib/contrib/dotzlib/DotZLib/ |
| Inflater.cs | 16 /// Implements a data decompressor, using the inflate algorithm in the ZLib dll
25 private static extern int inflate(ref ZStream sz, int flush);
method in class:DotZLib.Inflater 67 err = inflate(ref _ztream, (int)FlushTypes.None);
72 err = inflate(ref _ztream, (int)FlushTypes.None);
89 err = inflate(ref _ztream, (int)FlushTypes.Finish);
99 /// Closes the internal zlib inflate stream
|
| /src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
| Inflater.cs | 16 /// Implements a data decompressor, using the inflate algorithm in the ZLib dll
25 private static extern int inflate(ref ZStream sz, int flush);
method in class:DotZLib.Inflater 67 err = inflate(ref _ztream, (int)FlushTypes.None);
72 err = inflate(ref _ztream, (int)FlushTypes.None);
89 err = inflate(ref _ztream, (int)FlushTypes.Finish);
99 /// Closes the internal zlib inflate stream
|
| /src/common/dist/zlib/ |
| inflate.c | 1 /* $NetBSD: inflate.c,v 1.9 2026/05/03 16:36:09 christos Exp $ */ 3 /* inflate.c -- zlib decompression 12 * - First version -- complete rewrite of inflate to simplify code, avoid 15 * improve code readability and style over the previous zlib inflate code 26 * - Correct filename to inffixed.h for fixed tables in inflate.c 27 * - Make hbuf[] unsigned char to match parameter type in inflate.c 29 * to avoid negation problem on Alphas (64 bit) in inflate.c 39 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 41 * buffer and bit count in inflate()--for speed when inflate_fast() not used 45 * - Move a comment on output buffer sizes from inffast.c to inflate. 476 int ZEXPORT inflate(z_streamp strm, int flush) { function [all...] |
| /src/sys/dev/pci/ |
| viomb.c | 100 static int inflate(struct viomb_softc *); 173 "inflate") != 0) 269 * Inflate: consume some amount of physical memory. 272 inflate(struct viomb_softc *sc) function 306 printf("%s: inflate enqueue failed.\n", 312 printf("%s: inflate enqueue failed.\n", 352 printf("%s: inflate dequeue failed, errno %d.\n", 494 * Kthread: sleeps, eventually inflate and deflate. 506 r = inflate(sc);
|
| /src/external/cddl/osnet/dist/uts/common/zmod/ |
| inflate.c | 6 /* inflate.c -- zlib decompression 17 * - First version -- complete rewrite of inflate to simplify code, avoid 20 * improve code readability and style over the previous zlib inflate code 31 * - Correct filename to inffixed.h for fixed tables in inflate.c 32 * - Make hbuf[] unsigned char to match parameter type in inflate.c 34 * to avoid negation problem on Alphas (64 bit) in inflate.c 44 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 46 * buffer and bit count in inflate()--for speed when inflate_fast() not used 50 * - Move a comment on output buffer sizes from inffast.c to inflate.c 60 * source file infback.c to provide a call-back interface to inflate fo 561 int ZEXPORT inflate(strm, flush) function [all...] |
| zconf.h | 73 #define inflate z_inflate macro
|
| /src/external/gpl3/binutils/dist/zlib/contrib/delphi/ |
| ZLib.pas | 206 {$L inflate.obj} 246 // inflate decompresses data 249 function inflate(var strm: TZStreamRec; flush: Integer): Integer; external; function 347 while DCheck(inflate(strm, Z_NO_FLUSH)) <> Z_STREAM_END do 380 if DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END then 517 CCheck(inflate(FZRec, 0));
|
| /src/external/gpl3/binutils/dist/zlib/contrib/pascal/ |
| zlibpas.pas | 110 function inflate(var strm: z_stream; flush: Integer): Integer; function 182 {$L inflate.obj} 208 function inflate; external; function
|
| /src/external/gpl3/binutils/dist/zlib/ |
| inflate.c | 0 /* inflate.c -- zlib decompression 10 * - First version -- complete rewrite of inflate to simplify code, avoid 13 * improve code readability and style over the previous zlib inflate code 24 * - Correct filename to inffixed.h for fixed tables in inflate.c 25 * - Make hbuf[] unsigned char to match parameter type in inflate.c 27 * to avoid negation problem on Alphas (64 bit) in inflate.c 37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 39 * buffer and bit count in inflate()--for speed when inflate_fast() not used 43 * - Move a comment on output buffer sizes from inffast.c to inflate.c 53 * source file infback.c to provide a call-back interface to inflate fo 590 int ZEXPORT inflate(z_streamp strm, int flush) { function [all...] |
| /src/external/gpl3/binutils.old/dist/zlib/contrib/delphi/ |
| ZLib.pas | 206 {$L inflate.obj} 246 // inflate decompresses data 249 function inflate(var strm: TZStreamRec; flush: Integer): Integer; external; function 347 while DCheck(inflate(strm, Z_NO_FLUSH)) <> Z_STREAM_END do 380 if DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END then 517 CCheck(inflate(FZRec, 0));
|
| /src/external/gpl3/binutils.old/dist/zlib/contrib/pascal/ |
| zlibpas.pas | 110 function inflate(var strm: z_stream; flush: Integer): Integer; function 182 {$L inflate.obj} 208 function inflate; external; function
|
| /src/external/gpl3/binutils.old/dist/zlib/ |
| inflate.c | 0 /* inflate.c -- zlib decompression 10 * - First version -- complete rewrite of inflate to simplify code, avoid 13 * improve code readability and style over the previous zlib inflate code 24 * - Correct filename to inffixed.h for fixed tables in inflate.c 25 * - Make hbuf[] unsigned char to match parameter type in inflate.c 27 * to avoid negation problem on Alphas (64 bit) in inflate.c 37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 39 * buffer and bit count in inflate()--for speed when inflate_fast() not used 43 * - Move a comment on output buffer sizes from inffast.c to inflate.c 53 * source file infback.c to provide a call-back interface to inflate fo 623 int ZEXPORT inflate(strm, flush) function [all...] |
| /src/external/gpl3/gdb.old/dist/zlib/contrib/delphi/ |
| ZLib.pas | 206 {$L inflate.obj} 246 // inflate decompresses data 249 function inflate(var strm: TZStreamRec; flush: Integer): Integer; external; function 347 while DCheck(inflate(strm, Z_NO_FLUSH)) <> Z_STREAM_END do 380 if DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END then 517 CCheck(inflate(FZRec, 0));
|
| /src/external/gpl3/gdb.old/dist/zlib/contrib/pascal/ |
| zlibpas.pas | 110 function inflate(var strm: z_stream; flush: Integer): Integer; function 182 {$L inflate.obj} 208 function inflate; external; function
|
| /src/external/gpl3/gdb.old/dist/zlib/ |
| inflate.c | 0 /* inflate.c -- zlib decompression 10 * - First version -- complete rewrite of inflate to simplify code, avoid 13 * improve code readability and style over the previous zlib inflate code 24 * - Correct filename to inffixed.h for fixed tables in inflate.c 25 * - Make hbuf[] unsigned char to match parameter type in inflate.c 27 * to avoid negation problem on Alphas (64 bit) in inflate.c 37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 39 * buffer and bit count in inflate()--for speed when inflate_fast() not used 43 * - Move a comment on output buffer sizes from inffast.c to inflate.c 53 * source file infback.c to provide a call-back interface to inflate fo 623 int ZEXPORT inflate(strm, flush) function [all...] |
| /src/external/gpl3/gdb/dist/zlib/contrib/delphi/ |
| ZLib.pas | 206 {$L inflate.obj} 246 // inflate decompresses data 249 function inflate(var strm: TZStreamRec; flush: Integer): Integer; external; function 347 while DCheck(inflate(strm, Z_NO_FLUSH)) <> Z_STREAM_END do 380 if DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END then 517 CCheck(inflate(FZRec, 0));
|
| /src/external/gpl3/gdb/dist/zlib/contrib/pascal/ |
| zlibpas.pas | 110 function inflate(var strm: z_stream; flush: Integer): Integer; function 182 {$L inflate.obj} 208 function inflate; external; function
|
| /src/external/gpl3/gdb/dist/zlib/ |
| inflate.c | 0 /* inflate.c -- zlib decompression 10 * - First version -- complete rewrite of inflate to simplify code, avoid 13 * improve code readability and style over the previous zlib inflate code 24 * - Correct filename to inffixed.h for fixed tables in inflate.c 25 * - Make hbuf[] unsigned char to match parameter type in inflate.c 27 * to avoid negation problem on Alphas (64 bit) in inflate.c 37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 39 * buffer and bit count in inflate()--for speed when inflate_fast() not used 43 * - Move a comment on output buffer sizes from inffast.c to inflate.c 53 * source file infback.c to provide a call-back interface to inflate fo 590 int ZEXPORT inflate(z_streamp strm, int flush) { function [all...] |
| /src/common/dist/zlib/contrib/delphi/ |
| ZLib.pas | 206 {$L inflate.obj} 246 // inflate decompresses data 249 function inflate(var strm: TZStreamRec; flush: Integer): Integer; external; function 347 while DCheck(inflate(strm, Z_NO_FLUSH)) <> Z_STREAM_END do 380 if DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END then 517 CCheck(inflate(FZRec, 0));
|
| /src/common/dist/zlib/contrib/pascal/ |
| zlibpas.pas | 110 function inflate(var strm: z_stream; flush: Integer): Integer; function 182 {$L inflate.obj} 208 function inflate; external; function
|
| /src/crypto/external/apache2/openssl/dist/crypto/comp/ |
| c_zlib.c | 104 #define inflate p_inflate macro 197 err = inflate(&state->istream, Z_SYNC_FLUSH); 289 p_inflate = (inflate_ft)DSO_bind_func(zlib_dso, "inflate"); 475 ret = inflate(zin, 0);
|
| /src/crypto/external/bsd/openssl/dist/crypto/comp/ |
| c_zlib.c | 110 # define inflate p_inflate macro 201 err = inflate(&state->istream, Z_SYNC_FLUSH); 226 p_inflate = (inflate_ft) DSO_bind_func(zlib_dso, "inflate"); 398 ret = inflate(zin, 0);
|