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

1 2 3 4 5 6 7

  /external/freetype/src/gzip/
inflate.c 57 if (z == Z_NULL || z->state == Z_NULL)
60 z->msg = Z_NULL;
62 inflate_blocks_reset(z->state->blocks, z, Z_NULL);
71 if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL)
73 if (z->state->blocks != Z_NULL)
76 z->state = Z_NULL;
88 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] |
    [all...]
infblock.c 72 if (c != Z_NULL)
82 if (s->checkfn != Z_NULL)
83 z->adler = s->check = (*s->checkfn)(0L, (const Bytef *)Z_NULL, 0);
96 (z,1,sizeof(struct inflate_blocks_state))) == Z_NULL)
99 (inflate_huft *)ZALLOC(z, sizeof(inflate_huft), MANY)) == Z_NULL)
102 return Z_NULL;
104 if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL)
108 return Z_NULL;
114 inflate_blocks_reset(s, z, Z_NULL);
162 if (s->sub.decode.codes == Z_NULL)
    [all...]
inftrees.c 149 *t = (inflate_huft *)Z_NULL;
203 u[0] = (inflate_huft *)Z_NULL; /* just to keep compilers happy */
204 q = (inflate_huft *)Z_NULL; /* ditto */
311 if ((v = (uIntf*)ZALLOC(z, 19, sizeof(uInt))) == Z_NULL)
313 r = huft_build(c, 19, 19, (uIntf*)Z_NULL, (uIntf*)Z_NULL,
344 if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
427 if ((c = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
429 if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
infutil.c 45 if (s->checkfn != Z_NULL)
71 if (s->checkfn != Z_NULL)
adler32.c 30 if (buf == Z_NULL) return 1L;
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_inflate.c 78 * - 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 && state->wbits != (unsigned)windowBits)
    [all...]
fx_zlib_deflate.c 232 if (version == Z_NULL || version[0] != my_version[0] ||
236 if (strm == Z_NULL) return Z_STREAM_ERROR;
238 strm->msg = Z_NULL;
277 if (s == Z_NULL) return Z_MEM_ERROR;
282 s->gzhead = Z_NULL;
304 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
305 s->pending_buf == Z_NULL) {
333 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL
    [all...]
fx_zlib_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/src/
inflate.c 78 * - 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 && 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/src/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...]
  /external/zlib/src/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 155 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;
gun.c 198 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;
gzjoin.c 268 *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;
  /libcore/luni/src/main/native/
ZipUtilities.cpp 37 stream.opaque = Z_NULL;
38 stream.zalloc = Z_NULL;
39 stream.zfree = Z_NULL;
  /external/libpng/contrib/libtests/
fakepng.c 23 crc = crc32(0, Z_NULL, 0);
  /external/zlib/src/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.
253 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;
  /bootable/recovery/applypatch/
imgpatch.c 143 strm.zalloc = Z_NULL;
144 strm.zfree = Z_NULL;
145 strm.opaque = Z_NULL;
204 strm.zalloc = Z_NULL;
205 strm.zfree = Z_NULL;
206 strm.opaque = 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;
212 zcontext_.zalloc = Z_NULL;
213 zcontext_.zfree = Z_NULL;
214 zcontext_.opaque = Z_NULL;
  /frameworks/base/libs/androidfw/
StreamingZipInflater.cpp 102 mInflateState.zalloc = Z_NULL;
103 mInflateState.zfree = Z_NULL;
104 mInflateState.opaque = Z_NULL;
  /art/runtime/
zip_archive_test.cc 51 uint32_t computed_crc = crc32(0L, Z_NULL, 0);

Completed in 584 milliseconds

1 2 3 4 5 6 7