Home
last modified time | relevance | path

Searched refs:Z_NULL (Results 1 – 25 of 46) sorted by relevance

12

/freebsd/sys/contrib/zlib/test/
H A Dinfcover.c231 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 Dminigzip.c180 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 Dinflate.c96 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 Ddeflate.c386 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 Dinfback.c30 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 Dgzread.c94 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 Dgzwrite.c34 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 Dadler32.c81 if (buf == Z_NULL) in adler32_z()
/freebsd/sys/contrib/zstd/zlibWrapper/examples/
H A Dfitblk_original.c148 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 Dfitblk.c163 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 Dzwrapbench.c311 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 Dminigzip.c164 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 Dexample.c85 q = Z_NULL;
93 q = Z_NULL; in myfree()
596 if (compr == Z_NULL || uncompr == Z_NULL) {
H A Dexample_original.c79 q = Z_NULL;
85 q = Z_NULL; in myfree()
587 if (compr == Z_NULL || uncompr == Z_NULL) {
/freebsd/crypto/openssl/crypto/comp/
H A Dc_zlib.c133 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 Dgpt.c76 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 Dh_comp_zlib.c74 z.zalloc = Z_NULL; in main()
75 z.zfree = Z_NULL; in main()
H A Dh_comp_zlib_rnd.c78 z.zalloc = Z_NULL; in main()
79 z.zfree = Z_NULL; in main()
/freebsd/sys/dev/random/
H A Dunit_test.c75 q = Z_NULL; in myalloc()
81 q = Z_NULL; in myfree()
/freebsd/sys/contrib/zstd/zlibWrapper/
H A Dgzread.c121 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 Dgzwrite.c46 strm->zalloc = Z_NULL;
47 strm->zfree = Z_NULL;
48 strm->opaque = Z_NULL;
/freebsd/tools/tools/net80211/w00t/libw00t/
H A Dw00t.c308 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 Dprga.c263 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 Dhast_checksum.c50 crc = crc32(0L, Z_NULL, 0); in hast_crc32_checksum()
/freebsd/tools/tools/net80211/w00t/expand/
H A Dexpand.c184 uLong crc = crc32(0L, Z_NULL, 0); in send_mcast()
284 crc = crc32(0L, Z_NULL, 0); in send_mcast()

12