HomeSort by relevance Sort by last modified time
    Searched refs:Z_NULL (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/zlib/
inflate.c 78 * - 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;
118 state->head = Z_NULL;
133 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
149 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
168 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits)
    [all...]
deflate.c 233 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 || strm->state == Z_NULL || dictionary == Z_NULL
    [all...]
infback.c 23 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 || strm->state == Z_NULL
    [all...]
  /external/zlib/test/
infcover.c 50 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, 0); assert(ret == Z_STREAM_ERROR)
    [all...]
minigzip.c 155 q = Z_NULL;
162 q = Z_NULL;
206 gz->strm.opaque = Z_NULL;
211 gz->strm.avail_in = Z_NULL;
303 strm->next_in = Z_NULL;
  /external/qemu/distrib/zlib-1.2.3/
inflate.c 78 * - 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; /* in case we return an error *
    [all...]
deflate.c 236 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 || strm->state == Z_NULL || dictionary == Z_NULL |
    [all...]
gzio.c 106 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...]
infback.c 23 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 || strm->state == Z_NULL
    [all...]
  /external/zlib/examples/
fitblk.c 148 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;
zpipe.c 45 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;
zran.c 150 strm.zalloc = Z_NULL;
151 strm.zfree = Z_NULL;
152 strm.opaque = Z_NULL;
154 strm.next_in = Z_NULL;
264 strm.zalloc = Z_NULL;
265 strm.zfree = Z_NULL;
266 strm.opaque = Z_NULL;
268 strm.next_in = Z_NULL;
gun.c 197 not equal to Z_NULL), or Z_DATA_ERROR for invalid input.
398 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */
468 outd.crc = crc32(0L, Z_NULL, 0);
478 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */
607 if (strm->next_in != Z_NULL) {
639 strm.zalloc = Z_NULL;
640 strm.zfree = Z_NULL;
641 strm.opaque = Z_NULL;
gzjoin.c 267 *crc = crc32(0L, Z_NULL, 0);
299 strm.zalloc = Z_NULL;
300 strm.zfree = Z_NULL;
301 strm.opaque = Z_NULL;
303 strm.next_in = Z_NULL;
  /bootable/recovery/applypatch/
imgpatch.c 134 strm.zalloc = Z_NULL;
135 strm.zfree = Z_NULL;
136 strm.opaque = Z_NULL;
189 strm.zalloc = Z_NULL;
190 strm.zfree = Z_NULL;
191 strm.opaque = Z_NULL;
  /libcore/luni/src/main/native/
zip.h 44 stream.opaque = Z_NULL;
45 stream.zalloc = Z_NULL;
46 stream.zfree = Z_NULL;
  /external/zlib/contrib/infback9/
infback9.c 15 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.
254 if (strm == Z_NULL || strm->state == Z_NULL
    [all...]
  /system/extras/tests/bionic/libc/other/
test_zlib.c 54 strm.zalloc = Z_NULL;
55 strm.zfree = Z_NULL;
56 strm.opaque = Z_NULL;
102 strm.zalloc = Z_NULL;
103 strm.zfree = Z_NULL;
104 strm.opaque = Z_NULL;
106 strm.next_in = Z_NULL;
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 52 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;
  /frameworks/native/libs/utils/
ZipUtils.cpp 64 zstream.zalloc = Z_NULL;
65 zstream.zfree = Z_NULL;
66 zstream.opaque = Z_NULL;
176 zstream.zalloc = Z_NULL;
177 zstream.zfree = Z_NULL;
178 zstream.opaque = Z_NULL;
ZipFileRO.cpp 793 zstream.zalloc = Z_NULL;
794 zstream.zfree = Z_NULL;
795 zstream.opaque = Z_NULL;
860 zstream.zalloc = Z_NULL;
861 zstream.zfree = Z_NULL;
862 zstream.opaque = Z_NULL;
  /frameworks/base/libs/androidfw/
StreamingZipInflater.cpp 83 mInflateState.zalloc = Z_NULL;
84 mInflateState.zfree = Z_NULL;
85 mInflateState.opaque = Z_NULL;
  /system/core/libzipfile/
zipfile.c 87 zstream.zalloc = Z_NULL;
88 zstream.zfree = Z_NULL;
89 zstream.opaque = Z_NULL;
  /external/openssl/crypto/comp/
c_zlib.c 150 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...]
  /dalvik/libdex/
DexOptData.cpp 43 uLong adler = adler32(0L, Z_NULL, 0);

Completed in 793 milliseconds

1 2 3 4