HomeSort by: relevance | last modified time | path
    Searched refs:Z_NULL (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/common/dist/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 180 gz->strm.opaque = Z_NULL;
185 gz->strm.avail_in = Z_NULL;
269 strm->next_in = Z_NULL;
example.c 514 if (compr == Z_NULL || uncompr == Z_NULL) {
  /src/common/dist/zlib/examples/
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;
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;
gznorm.c 20 // z_stream, z_off_t, crc32_combine, Z_NULL, Z_BLOCK,
56 // inflateEnd() on an already ended state, or one with state set to Z_NULL, is
89 strm.zalloc = Z_NULL;
90 strm.zfree = Z_NULL;
91 strm.opaque = Z_NULL;
93 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;
gzappend.c 283 strm->zalloc = Z_NULL;
284 strm->zfree = Z_NULL;
285 strm->opaque = Z_NULL;
295 crc = crc32(0L, Z_NULL, 0);
gzlog.c 620 strm.zalloc = Z_NULL;
621 strm.zfree = Z_NULL;
622 strm.opaque = Z_NULL;
  /src/common/dist/zlib/
inflate.c 80 * - Check next_in and next_out for Z_NULL on entry to inflate()
98 if (strm == Z_NULL ||
102 if (state == Z_NULL || state->strm != strm ||
114 strm->msg = Z_NULL;
122 state->head = Z_NULL;
169 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
171 state->window = Z_NULL;
185 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
188 if (strm == Z_NULL) return Z_STREAM_ERROR;
189 strm->msg = Z_NULL; /* in case we return an error *
    [all...]
infback.c 22 Z_NULL to use the library memory allocation functions.
32 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
35 if (strm == Z_NULL || window == Z_NULL ||
38 strm->msg = Z_NULL; /* in case we return an error */
55 if (state == Z_NULL) return Z_MEM_ERROR;
157 next = Z_NULL; \
237 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
242 are not correct, i.e. strm is Z_NULL or the state was not initialized.
262 if (strm == Z_NULL || strm->state == Z_NULL
    [all...]
deflate.c 388 if (version == Z_NULL || version[0] != my_version[0] ||
392 if (strm == Z_NULL) return Z_STREAM_ERROR;
394 strm->msg = Z_NULL;
435 if (s == Z_NULL) return Z_MEM_ERROR;
441 s->gzhead = Z_NULL;
501 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
502 s->pending_buf == Z_NULL) {
533 if (strm == Z_NULL ||
    [all...]
adler32.c 81 if (buf == Z_NULL)
gzread.c 93 state->strm.zalloc = Z_NULL;
94 state->strm.zfree = Z_NULL;
95 state->strm.opaque = Z_NULL;
97 state->strm.next_in = Z_NULL;
gzwrite.c 33 strm->zalloc = Z_NULL;
34 strm->zfree = Z_NULL;
35 strm->opaque = Z_NULL;
crc32.c 587 if (buf == Z_NULL) return 0;
699 if (buf == Z_NULL) return 0;
  /src/common/dist/zlib/contrib/infback9/
infback9.c 15 Z_NULL to use the library memory allocation functions.
23 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
26 if (strm == Z_NULL || window == Z_NULL)
28 strm->msg = Z_NULL; /* in case we return an error */
36 if (state == Z_NULL) return Z_MEM_ERROR;
125 next = Z_NULL; \
205 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
210 are not correct, i.e. strm is Z_NULL or the state was not initialized.
243 if (strm == Z_NULL || strm->state == Z_NULL
    [all...]
  /src/tests/crypto/opencrypto/
h_comp_zlib.c 74 z.zalloc = Z_NULL;
75 z.zfree = Z_NULL;
h_comp_zlib_rnd.c 78 z.zalloc = Z_NULL;
79 z.zfree = Z_NULL;
  /src/sys/net/
zlib.c 825 if (vers == Z_NULL || vers[0] != my_version[0] ||
829 if (strm == Z_NULL) return Z_STREAM_ERROR;
831 strm->msg = Z_NULL;
833 if (strm->zalloc == Z_NULL) {
837 if (strm->zfree == Z_NULL) strm->zfree = zcfree;
855 if (s == Z_NULL) return Z_MEM_ERROR;
879 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
880 s->pending_buf == Z_NULL) {
    [all...]
  /src/common/dist/zlib/contrib/pascal/
zlibpas.pas 55 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 *)
  /src/sys/opencrypto/
deflate.c 97 zbuf.opaque = Z_NULL;
244 zbuf.opaque = Z_NULL;
  /src/sys/arch/hpc/stand/hpcboot/
file_manager.cpp 160 _crc = crc32(0L, Z_NULL, 0);
  /src/sys/arch/atari/stand/tostools/libtos/
cread.c 349 s->crc = crc32(0L, Z_NULL, 0);

Completed in 24 milliseconds

1 2