Searched refs:strm (Results 1 - 18 of 18) sorted by relevance

/forgerock/web-agents-v4/zlib/
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
H A Dinflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
59 * input in strm.
96 local int updatewindow OF((z_streamp strm, const unsigned char FAR *end,
104 int ZEXPORT inflateResetKeep(strm)
105 z_streamp strm;
109 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
110 state = (struct inflate_state FAR *)strm->state;
111 strm
[all...]
H A Dgzread.c48 If strm->avail_in != 0, then the current data is moved to the beginning of
55 z_streamp strm = &(state->strm); local
60 if (strm->avail_in) { /* copy what's there to the start */
62 unsigned const char *q = strm->next_in;
63 unsigned n = strm->avail_in;
68 if (gz_load(state, state->in + strm->avail_in,
69 state->size - strm->avail_in, &got) == -1)
71 strm->avail_in += got;
72 strm
89 z_streamp strm = &(state->strm); local
177 z_streamp strm = &(state->strm); local
229 z_streamp strm = &(state->strm); local
295 z_streamp strm; local
[all...]
H A Ddeflate.c86 local void flush_pending OF((z_streamp strm));
87 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
201 int ZEXPORT deflateInit_(strm, level, version, stream_size)
202 z_streamp strm;
207 return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
209 /* To do: ignore strm->next_in if we use it as window */
213 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
215 z_streamp strm;
237 if (strm == Z_NULL) return Z_STREAM_ERROR;
239 strm
[all...]
H A Dgzwrite.c19 z_streamp strm = &(state->strm); local
39 strm->zalloc = Z_NULL;
40 strm->zfree = Z_NULL;
41 strm->opaque = Z_NULL;
42 ret = deflateInit2(strm, state->level, Z_DEFLATED,
57 strm->avail_out = state->size;
58 strm->next_out = state->out;
59 state->x.next = strm->next_out;
76 z_streamp strm local
139 z_streamp strm = &(state->strm); local
172 z_streamp strm; local
252 z_streamp strm; local
314 z_streamp strm; local
395 z_streamp strm; local
503 z_streamp strm; local
[all...]
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 z_const unsigned char FAR *in; /* local strm->next_in */
74 unsigned char FAR *out; /* local strm
[all...]
H A Dzutil.h52 #define ERR_RETURN(strm,err) \
53 return (strm->msg = ERR_MSG(err), (err))
244 #define ZALLOC(strm, items, size) \
245 (*((strm)->zalloc))((strm)->opaque, (items), (size))
246 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
H A Dgzguts.h191 z_stream strm; /* stream structure in-place (not a pointer) */ member in struct:__anon115
H A Dgzlib.c87 state->strm.avail_in = 0; /* no input data yet */
404 state->strm.avail_in = 0;
496 offset -= state->strm.avail_in; /* don't count buffered input */
H A Ddeflate.h98 z_streamp strm; /* pointer back to this zlib stream */ member in struct:internal_state
H A Dtrees.c920 if (s->strm->data_type == Z_UNKNOWN)
921 s->strm->data_type = detect_data_type(s);
/forgerock/web-agents-v4/source/
H A Dutility.c655 z_stream strm; local
669 strm.next_in = (Bytef *) compressed;
670 strm.avail_in = (uInt) * compressed_sz;
671 strm.total_out = 0;
672 strm.zalloc = Z_NULL;
673 strm.zfree = Z_NULL;
675 if (inflateInit2(&strm, (16 + MAX_WBITS)) != Z_OK) {
683 if (strm.total_out >= uncompLength) {
695 strm.next_out = (Bytef *) (uncomp + strm
718 z_stream strm; local
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/fednsso/
H A DFSSSOAndFedService.java757 java.io.ByteArrayOutputStream strm =
759 e.printStackTrace(new java.io.PrintStream(strm));
760 FSUtils.debug.error(strm.toString());
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/fednsso/
H A DFSSSOAndFedService.java757 java.io.ByteArrayOutputStream strm =
759 e.printStackTrace(new java.io.PrintStream(strm));
760 FSUtils.debug.error(strm.toString());
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSSOAPReceiver.java878 java.io.ByteArrayOutputStream strm =
880 e.printStackTrace(new java.io.PrintStream(strm));
881 FSUtils.debug.error(strm.toString());
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSSOAPReceiver.java878 java.io.ByteArrayOutputStream strm =
880 e.printStackTrace(new java.io.PrintStream(strm));
881 FSUtils.debug.error(strm.toString());

Completed in 111 milliseconds