/freebsd/sys/contrib/zlib/test/ |
H A D | infcover.c | 231 strm->opaque = Z_NULL; in mem_done() 232 strm->zalloc = Z_NULL; in mem_done() 233 strm->zfree = Z_NULL; in mem_done() 295 strm.next_in = Z_NULL; in inf() 357 strm.next_in = Z_NULL; in cover_support() 362 ret = inflateSetDictionary(&strm, Z_NULL, 0); in cover_support() 375 strm.next_in = Z_NULL; in cover_support() 381 strm.next_in = Z_NULL; in cover_support() 394 ret = inflate(Z_NULL, 0); assert(ret == Z_STREAM_ERROR); in cover_wrap() 395 ret = inflateEnd(Z_NULL); assert(ret == Z_STREAM_ERROR); in cover_wrap() [all …]
|
H A D | minigzip.c | 180 gz->strm.opaque = Z_NULL; in gz_open() 185 gz->strm.avail_in = Z_NULL; in gz_open() 269 strm->next_in = Z_NULL; in gzclose()
|
/freebsd/sys/contrib/zlib/ |
H A D | inflate.c | 96 if (strm == Z_NULL || in inflateStateCheck() 100 if (state == Z_NULL || state->strm != strm || in inflateStateCheck() 112 strm->msg = Z_NULL; in inflateResetKeep() 120 state->head = Z_NULL; in inflateResetKeep() 167 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { in inflateReset2() 169 state->window = Z_NULL; in inflateReset2() 183 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] || in inflateInit2_() 186 if (strm == Z_NULL) return Z_STREAM_ERROR; in inflateInit2_() 187 strm->msg = Z_NULL; /* in case we return an error */ in inflateInit2_() 204 if (state == Z_NULL) return Z_MEM_ERROR; in inflateInit2_() [all …]
|
H A D | deflate.c | 386 if (version == Z_NULL || version[0] != my_version[0] || in deflateInit2_() 390 if (strm == Z_NULL) return Z_STREAM_ERROR; in deflateInit2_() 392 strm->msg = Z_NULL; in deflateInit2_() 433 if (s == Z_NULL) return Z_MEM_ERROR; in deflateInit2_() 439 s->gzhead = Z_NULL; in deflateInit2_() 499 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL || in deflateInit2_() 500 s->pending_buf == Z_NULL) { in deflateInit2_() 531 if (strm == Z_NULL || in deflateStateCheck() 535 if (s == Z_NULL || s->strm != strm || (s->status != INIT_STATE && in deflateStateCheck() 558 if (deflateStateCheck(strm) || dictionary == Z_NULL) in deflateSetDictionary() [all …]
|
H A D | infback.c | 30 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] || in inflateBackInit_() 33 if (strm == Z_NULL || window == Z_NULL || in inflateBackInit_() 36 strm->msg = Z_NULL; /* in case we return an error */ in inflateBackInit_() 53 if (state == Z_NULL) return Z_MEM_ERROR; in inflateBackInit_() 155 next = Z_NULL; \ 260 if (strm == Z_NULL || strm->state == Z_NULL) in inflateBack() 265 strm->msg = Z_NULL; in inflateBack() 270 have = next != Z_NULL ? strm->avail_in : 0; in inflateBack() 622 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0) in inflateBackEnd() 625 strm->state = Z_NULL; in inflateBackEnd()
|
H A D | gzread.c | 94 state->strm.zalloc = Z_NULL; in gz_look() 95 state->strm.zfree = Z_NULL; in gz_look() 96 state->strm.opaque = Z_NULL; in gz_look() 98 state->strm.next_in = Z_NULL; in gz_look()
|
H A D | gzwrite.c | 34 strm->zalloc = Z_NULL; in gz_init() 35 strm->zfree = Z_NULL; in gz_init() 36 strm->opaque = Z_NULL; in gz_init()
|
H A D | adler32.c | 81 if (buf == Z_NULL) in adler32_z()
|
/freebsd/sys/contrib/zstd/zlibWrapper/examples/ |
H A D | fitblk_original.c | 148 def.zalloc = Z_NULL; in main() 149 def.zfree = Z_NULL; in main() 150 def.opaque = Z_NULL; in main() 180 inf.zalloc = Z_NULL; in main() 181 inf.zfree = Z_NULL; in main() 182 inf.opaque = Z_NULL; in main() 184 inf.next_in = Z_NULL; in main()
|
H A D | fitblk.c | 163 def.zalloc = Z_NULL; in main() 164 def.zfree = Z_NULL; in main() 165 def.opaque = Z_NULL; in main() 197 inf.zalloc = Z_NULL; in main() 198 inf.zfree = Z_NULL; in main() 199 inf.opaque = Z_NULL; in main() 201 inf.next_in = Z_NULL; in main()
|
H A D | zwrapbench.c | 311 def.zalloc = Z_NULL; in BMK_benchMem() 312 def.zfree = Z_NULL; in BMK_benchMem() 313 def.opaque = Z_NULL; in BMK_benchMem() 355 def.zalloc = Z_NULL; in BMK_benchMem() 356 def.zfree = Z_NULL; in BMK_benchMem() 357 def.opaque = Z_NULL; in BMK_benchMem() 456 inf.zalloc = Z_NULL; in BMK_benchMem() 457 inf.zfree = Z_NULL; in BMK_benchMem() 458 inf.opaque = Z_NULL; in BMK_benchMem() 496 inf.zalloc = Z_NULL; in BMK_benchMem() [all …]
|
H A D | minigzip.c | 164 q = Z_NULL; 171 q = Z_NULL; 215 gz->strm.opaque = Z_NULL; 220 gz->strm.avail_in = Z_NULL; 312 strm->next_in = Z_NULL;
|
H A D | example.c | 85 q = Z_NULL; 93 q = Z_NULL; in myfree() 596 if (compr == Z_NULL || uncompr == Z_NULL) {
|
H A D | example_original.c | 79 q = Z_NULL; 85 q = Z_NULL; in myfree() 587 if (compr == Z_NULL || uncompr == Z_NULL) {
|
/freebsd/crypto/openssl/crypto/comp/ |
H A D | c_zlib.c | 133 state->istream.opaque = Z_NULL; in zlib_stateful_init() 134 state->istream.next_in = Z_NULL; in zlib_stateful_init() 135 state->istream.next_out = Z_NULL; in zlib_stateful_init() 142 state->ostream.opaque = Z_NULL; in zlib_stateful_init() 143 state->ostream.next_in = Z_NULL; in zlib_stateful_init() 144 state->ostream.next_out = Z_NULL; in zlib_stateful_init() 330 ctx->zin.zalloc = Z_NULL; in bio_zlib_new() 331 ctx->zin.zfree = Z_NULL; in bio_zlib_new() 332 ctx->zout.zalloc = Z_NULL; in bio_zlib_new() 333 ctx->zout.zfree = Z_NULL; in bio_zlib_new()
|
/freebsd/stand/libsa/ |
H A D | gpt.c | 76 hdr->hdr_crc_table = crc32(0, Z_NULL, 0); in gptupdate() 79 hdr->hdr_crc_self = crc32(0, Z_NULL, 0); in gptupdate() 201 hdr->hdr_crc_self = crc32(0, Z_NULL, 0); in gptread_hdr() 269 hdr->hdr_crc_table = crc32(0, Z_NULL, 0); in gptbootconv() 272 hdr->hdr_crc_self = crc32(0, Z_NULL, 0); in gptbootconv()
|
/freebsd/contrib/netbsd-tests/crypto/opencrypto/ |
H A D | h_comp_zlib.c | 74 z.zalloc = Z_NULL; in main() 75 z.zfree = Z_NULL; in main()
|
H A D | h_comp_zlib_rnd.c | 78 z.zalloc = Z_NULL; in main() 79 z.zfree = Z_NULL; in main()
|
/freebsd/sys/dev/random/ |
H A D | unit_test.c | 75 q = Z_NULL; in myalloc() 81 q = Z_NULL; in myfree()
|
/freebsd/sys/contrib/zstd/zlibWrapper/ |
H A D | gzread.c | 121 state.state->strm.zalloc = Z_NULL; 122 state.state->strm.zfree = Z_NULL; 123 state.state->strm.opaque = Z_NULL; 125 state.state->strm.next_in = Z_NULL;
|
H A D | gzwrite.c | 46 strm->zalloc = Z_NULL; 47 strm->zfree = Z_NULL; 48 strm->opaque = Z_NULL;
|
/freebsd/tools/tools/net80211/w00t/libw00t/ |
H A D | w00t.c | 308 uLong crc = crc32(0L, Z_NULL, 0); in wep_decrypt() 336 uLong crc = crc32(0L, Z_NULL, 0); in wep_encrypt()
|
/freebsd/tools/tools/net80211/w00t/prga/ |
H A D | prga.c | 263 uLong crc = crc32(0L, Z_NULL, 0); in send_frag() 408 uLong crc = crc32(0L, Z_NULL, 0); in wait_relay() 513 uLong crc = crc32(0L, Z_NULL, 0); in read_tap()
|
/freebsd/sbin/hastd/ |
H A D | hast_checksum.c | 50 crc = crc32(0L, Z_NULL, 0); in hast_crc32_checksum()
|
/freebsd/tools/tools/net80211/w00t/expand/ |
H A D | expand.c | 184 uLong crc = crc32(0L, Z_NULL, 0); in send_mcast() 284 crc = crc32(0L, Z_NULL, 0); in send_mcast()
|