Searched refs:Z_NULL (Results 1 - 9 of 9) sorted by relevance

/forgerock/web-agents-v4/zlib/
H A Dinflate.c78 * - Check next_in and next_out for Z_NULL on entry to inflate()
109 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
112 strm->msg = Z_NULL;
119 state->head = Z_NULL;
134 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
150 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
169 if (state->window != Z_NULL
[all...]
H A Ddeflate.c233 if (version == Z_NULL || version[0] != my_version[0] ||
237 if (strm == Z_NULL) return Z_STREAM_ERROR;
239 strm->msg = Z_NULL;
278 if (s == Z_NULL) return Z_MEM_ERROR;
283 s->gzhead = Z_NULL;
305 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
306 s->pending_buf == Z_NULL) {
334 if (strm == Z_NULL || str
[all...]
H A Dinfback.c23 Z_NULL to use the library memory allocation functions.
37 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
40 if (strm == Z_NULL || window == Z_NULL ||
43 strm->msg = Z_NULL; /* in case we return an error */
60 if (state == Z_NULL) return Z_MEM_ERROR;
163 next = Z_NULL; \
243 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
248 are not correct, i.e. strm is Z_NULL or the state was not initialized.
273 if (strm == Z_NULL || str
[all...]
H A Dgzread.c107 state->strm.zalloc = Z_NULL;
108 state->strm.zfree = Z_NULL;
109 state->strm.opaque = Z_NULL;
111 state->strm.next_in = Z_NULL;
H A Dadler32.c89 if (buf == Z_NULL)
H A Dgzwrite.c39 strm->zalloc = Z_NULL;
40 strm->zfree = Z_NULL;
41 strm->opaque = Z_NULL;
H A Dcrc32.c209 if (buf == Z_NULL) return 0UL;
H A Dzlib.h117 Bytef *extra; /* pointer to extra field or Z_NULL if none */
118 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
120 Bytef *name; /* pointer to zero-terminated file name or Z_NULL */
122 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */
143 zalloc must return Z_NULL if there is not enough memory for the object.
208 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ macro
228 zalloc and zfree are set to Z_NULL, deflateInit updates them to use default
346 if next_in or next_out was Z_NULL), Z_BUF_ERROR if no progress is possible
372 the caller. If next_in is not Z_NULL and avail_in is large enough (the
376 inflate. If zalloc and zfree are set to Z_NULL, inflateIni
[all...]
/forgerock/web-agents-v4/source/
H A Dutility.c672 strm.zalloc = Z_NULL;
673 strm.zfree = Z_NULL;
726 strm.zalloc = Z_NULL;
727 strm.zfree = Z_NULL;
728 strm.opaque = Z_NULL;
769 uLong crc = crc32(0L, Z_NULL, 0);

Completed in 47 milliseconds