Searched refs:strm (Results 26 - 50 of 80) sorted by relevance

1234

/macosx-10.10.1/rsync-45/rsync/zlib/
H A Dzlib.h221 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
243 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
310 deflate() sets strm->adler to the adler32 checksum of all input read
313 deflate() may update strm->data_type if it can make a good guess about
329 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
344 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
364 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
403 Also to assist in this, on return inflate() will set strm->data_type to the
404 number of unused bits in the last byte taken from strm->next_in, plus 64
409 uncompressed data from that block has been written to strm
[all...]
H A Dinffast.c43 strm->avail_in >= 6
44 strm->avail_out >= 258
45 start >= strm->avail_out
59 Therefore if strm->avail_in >= 6, then there is enough input to avoid
64 requires strm->avail_out >= 258 for each loop to avoid checking for
67 void inflate_fast(strm, start)
68 z_streamp strm;
69 unsigned start; /* inflate()'s starting value for strm->avail_out */
72 unsigned char FAR *in; /* local strm->next_in */
74 unsigned char FAR *out; /* local strm
[all...]
/macosx-10.10.1/xnu-2782.1.97/libkern/libkern/
H A Dzlib.h249 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
271 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
338 deflate() sets strm->adler to the adler32 checksum of all input read
341 deflate() may update strm->data_type if it can make a good guess about
357 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
372 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
392 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
431 Also to assist in this, on return inflate() will set strm->data_type to the
432 number of unused bits in the last byte taken from strm->next_in, plus 64
437 uncompressed data from that block has been written to strm
[all...]
/macosx-10.10.1/zlib-55/zlib/
H A Dgzwrite.c19 z_streamp strm = &(state->strm); local
34 strm->zalloc = Z_NULL;
35 strm->zfree = Z_NULL;
36 strm->opaque = Z_NULL;
37 ret = deflateInit2(strm, state->level, Z_DEFLATED,
49 strm->avail_out = state->size;
50 strm->next_out = state->out;
51 state->next = strm->next_out;
65 z_streamp strm local
117 z_streamp strm = &(state->strm); local
151 z_streamp strm; local
227 z_streamp strm; local
285 z_streamp strm; local
361 z_streamp strm; local
464 z_streamp strm; local
[all...]
H A Dzlib.h229 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
251 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
338 deflate() sets strm->adler to the adler32 checksum of all input read
341 deflate() may update strm->data_type if it can make a good guess about
357 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
372 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
396 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
435 Also to assist in this, on return inflate() will set strm->data_type to the
436 number of unused bits in the last byte taken from strm->next_in, plus 64 if
441 data from that block has been written to strm
[all...]
H A Dinfback.c22 strm provides memory allocation functions in zalloc and zfree, or
28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size)
29 z_streamp strm;
40 if (strm == Z_NULL || window == Z_NULL ||
43 strm->msg = Z_NULL; /* in case we return an error */
44 if (strm->zalloc == (alloc_func)0) {
45 strm->zalloc = zcalloc;
46 strm->opaque = (voidpf)0;
48 if (strm->zfree == (free_func)0) strm
[all...]
H A Dinffast.c48 strm->avail_in >= 6
49 strm->avail_out >= 258
50 start >= strm->avail_out
64 Therefore if strm->avail_in >= 6, then there is enough input to avoid
69 requires strm->avail_out >= 258 for each loop to avoid checking for
72 void ZLIB_INTERNAL inflate_fast(strm, start)
73 z_streamp strm;
74 unsigned start; /* inflate()'s starting value for strm->avail_out */
77 unsigned char FAR *in; /* local strm->next_in */
79 unsigned char FAR *out; /* local strm
[all...]
/macosx-10.10.1/zlib-55/zlib/contrib/masmx64/
H A Dinffas8664.c54 strm->avail_in >= 6
55 strm->avail_out >= 258
56 start >= strm->avail_out
70 Therefore if strm->avail_in >= 6, then there is enough input to avoid
75 requires strm->avail_out >= 258 for each loop to avoid checking for
86 /* 16 8 */ unsigned char FAR *in; /* esi rsi local strm->next_in */
88 /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm->next_out */
92 /* 64 32 */ code const FAR *lcode; /* ebp rbp local strm->lencode */
93 /* 72 36 */ code const FAR *dcode; /* r11 local strm->distcode */
94 /* 80 40 */ size_t /*unsigned long */hold; /* edx rdx local strm
[all...]
/macosx-10.10.1/zlib-55/zlib/contrib/infback9/
H A Dinfback9.c14 strm provides memory allocation functions in zalloc and zfree, or
19 int ZEXPORT inflateBack9Init_(strm, window, version, stream_size)
20 z_stream FAR *strm;
30 if (strm == Z_NULL || window == Z_NULL)
32 strm->msg = Z_NULL; /* in case we return an error */
33 if (strm->zalloc == (alloc_func)0) {
34 strm->zalloc = zcalloc;
35 strm->opaque = (voidpf)0;
37 if (strm->zfree == (free_func)0) strm
[all...]
/macosx-10.10.1/ppp-786.1.1/Helpers/pppdump/
H A Ddeflate.c74 z_stream strm; member in struct:deflate_state
169 state->strm.next_out = NULL;
170 state->strm.zalloc = (alloc_func) z_alloc;
171 state->strm.zfree = (free_func) z_free;
172 if (inflateInit2(&state->strm, -w_size) != Z_OK) {
188 inflateEnd(&state->strm);
213 inflateReset(&state->strm);
225 inflateReset(&state->strm);
277 state->strm.next_in = rptr;
278 state->strm
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/compat/
H A Dzlib.h179 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
201 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
262 deflate() sets strm->adler to the adler32 checksum of all input read
279 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
294 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
314 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
361 below), inflate sets strm-adler to the adler32 checksum of the
363 it sets strm->adler to the adler32 checksum of all output produced
383 ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm));
401 ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm,
[all...]
H A Dbzlib.h130 bz_stream* strm,
137 bz_stream* strm,
142 bz_stream* strm
146 bz_stream *strm,
152 bz_stream* strm
156 bz_stream *strm
/macosx-10.10.1/sudo-73/src/zlib/
H A Dzlib.h224 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
246 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
334 deflate() sets strm->adler to the adler32 checksum of all input read
337 deflate() may update strm->data_type if it can make a good guess about
353 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
368 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
392 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
431 Also to assist in this, on return inflate() will set strm->data_type to the
432 number of unused bits in the last byte taken from strm->next_in, plus 64 if
437 data from that block has been written to strm
[all...]
H A Dinfback.c22 strm provides memory allocation functions in zalloc and zfree, or
28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size)
29 z_streamp strm;
40 if (strm == Z_NULL || window == Z_NULL ||
43 strm->msg = Z_NULL; /* in case we return an error */
44 if (strm->zalloc == (alloc_func)0) {
48 strm->zalloc = zcalloc;
49 strm->opaque = (voidpf)0;
52 if (strm->zfree == (free_func)0)
56 strm
[all...]
H A Dinffast.c43 strm->avail_in >= 6
44 strm->avail_out >= 258
45 start >= strm->avail_out
59 Therefore if strm->avail_in >= 6, then there is enough input to avoid
64 requires strm->avail_out >= 258 for each loop to avoid checking for
67 void ZLIB_INTERNAL inflate_fast(strm, start)
68 z_streamp strm;
69 unsigned start; /* inflate()'s starting value for strm->avail_out */
72 unsigned char FAR *in; /* local strm->next_in */
74 unsigned char FAR *out; /* local strm
[all...]
/macosx-10.10.1/xnu-2782.1.97/libkern/zlib/
H A Dinfback.c49 strm provides memory allocation functions in zalloc and zfree, or
55 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size)
56 z_streamp strm;
67 if (strm == Z_NULL || window == Z_NULL ||
70 strm->msg = Z_NULL; /* in case we return an error */
72 if (strm->zalloc == (alloc_func)0) {
73 strm->zalloc = zcalloc;
74 strm->opaque = (voidpf)0;
76 if (strm->zfree == (free_func)0) strm
[all...]
H A Dinffast.c71 strm->avail_in >= 6
72 strm->avail_out >= 258
73 start >= strm->avail_out
87 Therefore if strm->avail_in >= 6, then there is enough input to avoid
92 requires strm->avail_out >= 258 for each loop to avoid checking for
95 void inflate_fast(strm, start)
96 z_streamp strm;
97 unsigned start; /* inflate()'s starting value for strm->avail_out */
100 unsigned char FAR *in; /* local strm->next_in */
102 unsigned char FAR *out; /* local strm
[all...]
/macosx-10.10.1/zlib-55/zlib/examples/
H A Dgun.c192 of buffered input at next. strm is used for passing error information back
196 file, read error, or write error (a write error indicated by strm->next_in
200 int outfile, z_stream *strm)
229 strm->msg = (char *)"unknown lzw flags set";
234 strm->msg = (char *)"lzw bits out of range";
254 strm->msg = (char *)"invalid lzw code";
281 strm->next_in = outbuf; /* signal write error */
321 strm->msg = (char *)"invalid lzw code";
353 strm->next_in = outbuf; /* signal write error */
370 /* Decompress a gzip file from infile to outfile. strm i
199 lunpipe(unsigned have, unsigned char *next, struct ind *indp, int outfile, z_stream *strm) argument
382 gunpipe(z_stream *strm, int infile, int outfile) argument
547 gunzip(z_stream *strm, char *inname, char *outname, int test) argument
635 z_stream strm; local
[all...]
/macosx-10.10.1/zlib-55/zlib/contrib/pascal/
H A Dzlibpas.pas84 function deflateInit(var strm: z_stream; level: Integer): Integer;
85 function deflate(var strm: z_stream; flush: Integer): Integer;
86 function deflateEnd(var strm: z_stream): Integer;
87 function inflateInit(var strm: z_stream): Integer;
88 function inflate(var strm: z_stream; flush: Integer): Integer;
89 function inflateEnd(var strm: z_stream): Integer;
92 function deflateInit2(var strm: z_stream; level, method, windowBits,
94 function deflateSetDictionary(var strm: z_stream; const dictionary: PChar;
97 function deflateReset(var strm: z_stream): Integer;
98 function deflateParams(var strm
[all...]
/macosx-10.10.1/zlib-55/zlib/contrib/delphi/
H A DZLib.pas241 function deflateInit_(var strm: TZStreamRec; level: Integer; version: PChar;
243 function deflate(var strm: TZStreamRec; flush: Integer): Integer; external;
244 function deflateEnd(var strm: TZStreamRec): Integer; external;
247 function inflateInit_(var strm: TZStreamRec; version: PChar;
249 function inflate(var strm: TZStreamRec; flush: Integer): Integer; external;
250 function inflateEnd(var strm: TZStreamRec): Integer; external;
251 function inflateReset(var strm: TZStreamRec): Integer; external;
289 strm: TZStreamRec;
292 FillChar(strm, sizeof(strm),
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DDebug.cpp104 circular_raw_ostream strm; member in struct:dbgstream
107 strm(errs(), "*** Debug Log Output ***\n",
118 return thestrm.strm;
/macosx-10.10.1/ksh-23/ksh/src/cmd/INIT/
H A Dratz.c575 #define inflateInit2(strm, windowBits) \
576 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
804 #define ZALLOC(strm, items, size) \
805 (*((strm)->zalloc))((strm)->opaque, (items), (size))
806 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
1305 z_streamp strm; /* pointer back to this zlib stream */ member in struct:internal_state
2040 strm
[all...]
/macosx-10.10.1/bzip2-36/bzip2/
H A Dbzlib.h101 bz_stream* strm,
108 bz_stream* strm,
113 bz_stream* strm
117 bz_stream *strm,
123 bz_stream* strm
127 bz_stream *strm
/macosx-10.10.1/zlib-55/zlib/contrib/inflate86/
H A Dinffas86.c47 strm->avail_in >= 6
48 strm->avail_out >= 258
49 start >= strm->avail_out
63 Therefore if strm->avail_in >= 6, then there is enough input to avoid
68 requires strm->avail_out >= 258 for each loop to avoid checking for
71 void inflate_fast(strm, start)
72 z_streamp strm;
73 unsigned start; /* inflate()'s starting value for strm->avail_out */
81 /* 16 8 */ unsigned char FAR *in; /* esi rsi local strm->next_in */
83 /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm
[all...]
/macosx-10.10.1/zlib-55/zlib/old/as400/
H A Dzlib.inc196 D strm like(z_stream) Compression stream
202 D strm like(z_stream) Compression stream
206 D strm like(z_stream) Compression stream
209 D strm like(z_stream) Expansion stream
214 D strm like(z_stream) Expansion stream
218 D strm like(z_stream) Expansion stream
225 D strm like(z_stream) Compression stream
236 D strm like(z_stream) Compression stream
240 D deflateCopy PR 10I 0 extproc('deflateCopy') Compress strm 2 strm
[all...]

Completed in 143 milliseconds

1234