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

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinflate.c102 * - Check next_in and next_out for Z_NULL on entry to inflate()
132 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
135 strm->msg = Z_NULL;
141 state->head = Z_NULL;
159 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
176 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
179 if (strm == Z_NULL) return Z_STREAM_ERROR;
180 strm->msg = Z_NULL; /* i
[all...]
H A Ddeflate.c260 if (version == Z_NULL || version[0] != my_version[0] ||
264 if (strm == Z_NULL) return Z_STREAM_ERROR;
266 strm->msg = Z_NULL;
296 if (s == Z_NULL) return Z_MEM_ERROR;
301 s->gzhead = Z_NULL;
321 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
322 s->pending_buf == Z_NULL) {
349 if (strm == Z_NULL || str
[all...]
H A Dgzio.c130 if (!path || !mode) return Z_NULL;
133 if (!s) return Z_NULL;
138 s->stream.next_in = s->inbuf = Z_NULL;
139 s->stream.next_out = s->outbuf = Z_NULL;
147 s->crc = crc32(0L, Z_NULL, 0);
153 return destroy(s), (gzFile)Z_NULL;
173 if (s->mode == '\0') return destroy(s), (gzFile)Z_NULL;
185 if (err != Z_OK || s->outbuf == Z_NULL) {
186 return destroy(s), (gzFile)Z_NULL;
198 if (err != Z_OK || s->inbuf == Z_NULL) {
[all...]
H A Dinfback.c47 Z_NULL to use the library memory allocation functions.
61 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
64 if (strm == Z_NULL || window == Z_NULL ||
67 strm->msg = Z_NULL; /* in case we return an error */
75 if (state == Z_NULL) return Z_MEM_ERROR;
178 next = Z_NULL; \
258 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
263 are not correct, i.e. strm is Z_NULL or the state was not initialized.
288 if (strm == Z_NULL || str
[all...]
H A Dzadler32.c105 if (buf == Z_NULL)
H A Dzcrc32.c248 if (buf == Z_NULL) return 0UL;
H A Dzlib.h138 Bytef *extra; /* pointer to extra field or Z_NULL if none */
139 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
141 Bytef *name; /* pointer to zero-terminated file name or Z_NULL */
143 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */
164 zalloc must return Z_NULL if there is not enough memory for the object.
229 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ macro
248 If zalloc and zfree are set to Z_NULL, deflateInit updates them to
371 the caller. If next_in is not Z_NULL and avail_in is large enough (the exact
375 inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to
702 caller must assure that, if not Z_NULL, nam
[all...]
/openjdk7/jdk/src/share/bin/
H A Dparse_manifest.c79 zs.zalloc = (alloc_func)Z_NULL;
80 zs.zfree = (free_func)Z_NULL;
81 zs.opaque = (voidpf)Z_NULL;
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dzip.cpp55 #define Z_NULL NULL macro
268 uint crc = get_crc32(0,Z_NULL,0);
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c138 png_ptr->crc = crc32(0, Z_NULL, 0);

Completed in 49 milliseconds