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

123

/external/zlib/src/
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;
/external/chromium_org/third_party/zlib/
H A Dinflate.c78 * - Check next_in and next_out for Z_NULL on entry to inflate()
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
111 strm->msg = Z_NULL;
117 state->head = Z_NULL;
138 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
157 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
159 state->window = Z_NULL;
177 if (version == Z_NULL || versio
[all...]
H A Ddeflate.c231 if (version == Z_NULL || version[0] != my_version[0] ||
235 if (strm == Z_NULL) return Z_STREAM_ERROR;
237 strm->msg = Z_NULL;
267 if (s == Z_NULL) return Z_MEM_ERROR;
272 s->gzhead = Z_NULL;
297 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
298 s->pending_buf == Z_NULL) {
325 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 */
51 if (state == Z_NULL) return Z_MEM_ERROR;
154 next = Z_NULL; \
234 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
239 are not correct, i.e. strm is Z_NULL or the state was not initialized.
264 if (strm == Z_NULL || str
[all...]
H A Dgzread.c127 state->strm.zalloc = Z_NULL;
128 state->strm.zfree = Z_NULL;
129 state->strm.opaque = Z_NULL;
131 state->strm.next_in = Z_NULL;
198 strm->adler = crc32(0L, Z_NULL, 0);
/external/zlib/src/test/
H A Dinfcover.c50 strm members to Z_NULL to use the default memory
231 strm->opaque = Z_NULL;
232 strm->zalloc = Z_NULL;
233 strm->zfree = Z_NULL;
295 strm.next_in = Z_NULL;
357 strm.next_in = Z_NULL;
362 ret = inflateSetDictionary(&strm, Z_NULL, 0);
375 strm.next_in = Z_NULL;
381 strm.next_in = Z_NULL;
394 ret = inflate(Z_NULL,
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Dinflate.c78 * - Check next_in and next_out for Z_NULL on entry to inflate()
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
111 strm->msg = Z_NULL;
117 state->head = Z_NULL;
135 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
152 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
155 if (strm == Z_NULL) return Z_STREAM_ERROR;
156 strm->msg = Z_NULL; /* i
[all...]
H A Ddeflate.c236 if (version == Z_NULL || version[0] != my_version[0] ||
240 if (strm == Z_NULL) return Z_STREAM_ERROR;
242 strm->msg = Z_NULL;
272 if (s == Z_NULL) return Z_MEM_ERROR;
277 s->gzhead = Z_NULL;
297 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
298 s->pending_buf == Z_NULL) {
325 if (strm == Z_NULL || str
[all...]
H A Dgzio.c106 if (!path || !mode) return Z_NULL;
109 if (!s) return Z_NULL;
114 s->stream.next_in = s->inbuf = Z_NULL;
115 s->stream.next_out = s->outbuf = Z_NULL;
123 s->crc = crc32(0L, Z_NULL, 0);
129 return destroy(s), (gzFile)Z_NULL;
149 if (s->mode == '\0') return destroy(s), (gzFile)Z_NULL;
161 if (err != Z_OK || s->outbuf == Z_NULL) {
162 return destroy(s), (gzFile)Z_NULL;
174 if (err != Z_OK || s->inbuf == Z_NULL) {
[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 */
51 if (state == Z_NULL) return Z_MEM_ERROR;
154 next = Z_NULL; \
234 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
239 are not correct, i.e. strm is Z_NULL or the state was not initialized.
264 if (strm == Z_NULL || str
[all...]
/external/zlib/src/examples/
H A Dfitblk.c148 def.zalloc = Z_NULL;
149 def.zfree = Z_NULL;
150 def.opaque = Z_NULL;
180 inf.zalloc = Z_NULL;
181 inf.zfree = Z_NULL;
182 inf.opaque = Z_NULL;
184 inf.next_in = Z_NULL;
H A Dzpipe.c45 strm.zalloc = Z_NULL;
46 strm.zfree = Z_NULL;
47 strm.opaque = Z_NULL;
101 strm.zalloc = Z_NULL;
102 strm.zfree = Z_NULL;
103 strm.opaque = Z_NULL;
105 strm.next_in = Z_NULL;
H A Dzran.c155 strm.zalloc = Z_NULL;
156 strm.zfree = Z_NULL;
157 strm.opaque = Z_NULL;
159 strm.next_in = Z_NULL;
269 strm.zalloc = Z_NULL;
270 strm.zfree = Z_NULL;
271 strm.opaque = Z_NULL;
273 strm.next_in = Z_NULL;
H A Dgun.c198 not equal to Z_NULL), or Z_DATA_ERROR for invalid input.
399 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */
469 outd.crc = crc32(0L, Z_NULL, 0);
479 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */
608 if (strm->next_in != Z_NULL) {
640 strm.zalloc = Z_NULL;
641 strm.zfree = Z_NULL;
642 strm.opaque = Z_NULL;
H A Dgzjoin.c268 *crc = crc32(0L, Z_NULL, 0);
300 strm.zalloc = Z_NULL;
301 strm.zfree = Z_NULL;
302 strm.opaque = Z_NULL;
304 strm.next_in = Z_NULL;
H A Dgzappend.c283 strm->zalloc = Z_NULL;
284 strm->zfree = Z_NULL;
285 strm->opaque = Z_NULL;
295 crc = crc32(0L, Z_NULL, 0);
/external/zlib/src/contrib/infback9/
H A Dinfback9.c15 Z_NULL to use the library memory allocation functions.
27 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
30 if (strm == Z_NULL || window == Z_NULL)
32 strm->msg = Z_NULL; /* in case we return an error */
40 if (state == Z_NULL) return Z_MEM_ERROR;
130 next = Z_NULL; \
210 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
215 are not correct, i.e. strm is Z_NULL or the state was not initialized.
253 if (strm == Z_NULL || str
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dgzip_stream.cc52 zcontext_.zalloc = Z_NULL;
53 zcontext_.zfree = Z_NULL;
54 zcontext_.opaque = Z_NULL;
212 zcontext_.zalloc = Z_NULL;
213 zcontext_.zfree = Z_NULL;
214 zcontext_.opaque = Z_NULL;
/external/protobuf/src/google/protobuf/io/
H A Dgzip_stream.cc52 zcontext_.zalloc = Z_NULL;
53 zcontext_.zfree = Z_NULL;
54 zcontext_.opaque = Z_NULL;
206 zcontext_.zalloc = Z_NULL;
207 zcontext_.zfree = Z_NULL;
208 zcontext_.opaque = Z_NULL;
/external/chromium_org/third_party/openssl/openssl/crypto/comp/
H A Dc_zlib.c150 state->istream.opaque = Z_NULL;
151 state->istream.next_in = Z_NULL;
152 state->istream.next_out = Z_NULL;
162 state->ostream.opaque = Z_NULL;
163 state->ostream.next_in = Z_NULL;
164 state->ostream.next_out = Z_NULL;
492 ctx->zin.zalloc = Z_NULL;
493 ctx->zin.zfree = Z_NULL;
498 ctx->zout.zalloc = Z_NULL;
499 ctx->zout.zfree = Z_NULL;
[all...]
/external/openssl/crypto/comp/
H A Dc_zlib.c150 state->istream.opaque = Z_NULL;
151 state->istream.next_in = Z_NULL;
152 state->istream.next_out = Z_NULL;
162 state->ostream.opaque = Z_NULL;
163 state->ostream.next_in = Z_NULL;
164 state->ostream.next_out = Z_NULL;
492 ctx->zin.zalloc = Z_NULL;
493 ctx->zin.zfree = Z_NULL;
498 ctx->zout.zalloc = Z_NULL;
499 ctx->zout.zfree = Z_NULL;
[all...]
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas55 extra: PChar; (* pointer to extra field or Z_NULL if none *)
56 extra_len: Integer; (* extra field length (valid if extra != Z_NULL) *)
58 name: PChar; (* pointer to zero-terminated file name or Z_NULL *)
60 comment: PChar; (* pointer to zero-terminated comment or Z_NULL *)

Completed in 237 milliseconds

123