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

1 2

  /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;
zlib.h 103 zalloc must return Z_NULL if there is not enough memory for the object.
164 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
180 If zalloc and zfree are set to Z_NULL, deflateInit updates them to
293 the caller. If next_in is not Z_NULL and avail_in is large enough (the exact
297 inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to
696 gzgets returns buf, or Z_NULL in case of error.
    [all...]
  /external/chromium_org/third_party/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;
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 || version[0] != ZLIB_VERSION[0] |
    [all...]
deflate.c 231 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 || 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 */
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...]
gzread.c 127 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);
adler32.c 84 if (buf == Z_NULL)
gzwrite.c 34 strm->zalloc = Z_NULL;
35 strm->zfree = Z_NULL;
36 strm->opaque = Z_NULL;
  /external/libpng/contrib/libtests/
fakepng.c 23 crc = crc32(0, Z_NULL, 0);
  /bootable/recovery/applypatch/
imgpatch.c 142 strm.zalloc = Z_NULL;
143 strm.zfree = Z_NULL;
144 strm.opaque = Z_NULL;
203 strm.zalloc = Z_NULL;
204 strm.zfree = Z_NULL;
205 strm.opaque = Z_NULL;
imgdiff.c 317 strm.zalloc = Z_NULL;
318 strm.zfree = Z_NULL;
319 strm.opaque = Z_NULL;
442 strm.zalloc = Z_NULL;
443 strm.zfree = Z_NULL;
444 strm.opaque = Z_NULL;
539 strm.zalloc = Z_NULL;
540 strm.zfree = Z_NULL;
541 strm.opaque = Z_NULL;
    [all...]
  /external/chromium_org/third_party/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;
  /art/runtime/
zip_archive_test.cc 51 uint32_t computed_crc = crc32(0L, Z_NULL, 0);
dex_file_verifier_test.cc 162 uint32_t adler_checksum = adler32(0L, Z_NULL, 0);
  /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);
  /external/libpng/contrib/tools/
png-fix-itxt.c 23 * Requires zlib (for crc32 and Z_NULL); build with
79 crc = crc32(0, Z_NULL, 0);
  /external/chromium_org/sdch/open-vcdiff/src/zlib/
adler32.c 121 if (buf == Z_NULL)
  /external/chromium_org/net/disk_cache/simple/
simple_synchronous_entry.cc 167 stream_0_crc32(crc32(0, Z_NULL, 0)),
294 *out_crc32 = crc32(crc32(0L, Z_NULL, 0),
    [all...]
  /bootable/recovery/minzip/
Zip.c 525 zstream.zalloc = Z_NULL;
526 zstream.zfree = Z_NULL;
527 zstream.opaque = Z_NULL;
644 crc = crc32(0L, Z_NULL, 0);
    [all...]
  /build/tools/zipalign/
ZipFile.cpp 788 *pCRC32 = crc32(0L, Z_NULL, 0);
818 *pCRC32 = crc32(0L, Z_NULL, 0);
845 *pCRC32 = crc32(0L, Z_NULL, 0);
895 crc = crc32(0L, Z_NULL, 0);
    [all...]

Completed in 299 milliseconds

1 2