Searched defs:strm (Results 1 - 5 of 5) sorted by relevance

/forgerock/web-agents-v4/zlib/
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 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 Dgzguts.h191 z_stream strm; /* stream structure in-place (not a pointer) */ member in struct:__anon115
H A Ddeflate.h98 z_streamp strm; /* pointer back to this zlib stream */ member in struct:internal_state
/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...]

Completed in 203 milliseconds