common/dist/zlib/adler32.c
81
if (buf == Z_NULL)
common/dist/zlib/crc32.c
519
if (buf == Z_NULL) return 0;
common/dist/zlib/crc32.c
630
if (buf == Z_NULL) return 0;
common/dist/zlib/deflate.c
1057
strm->adler = adler32(0L, Z_NULL, 0);
common/dist/zlib/deflate.c
1070
strm->adler = crc32(0L, Z_NULL, 0);
common/dist/zlib/deflate.c
1074
if (s->gzhead == Z_NULL) {
common/dist/zlib/deflate.c
1096
(s->gzhead->extra == Z_NULL ? 0 : 4) +
common/dist/zlib/deflate.c
1097
(s->gzhead->name == Z_NULL ? 0 : 8) +
common/dist/zlib/deflate.c
1098
(s->gzhead->comment == Z_NULL ? 0 : 16)
common/dist/zlib/deflate.c
1108
if (s->gzhead->extra != Z_NULL) {
common/dist/zlib/deflate.c
1120
if (s->gzhead->extra != Z_NULL) {
common/dist/zlib/deflate.c
1147
if (s->gzhead->name != Z_NULL) {
common/dist/zlib/deflate.c
1169
if (s->gzhead->comment != Z_NULL) {
common/dist/zlib/deflate.c
1200
strm->adler = crc32(0L, Z_NULL, 0);
common/dist/zlib/deflate.c
1309
strm->state = Z_NULL;
common/dist/zlib/deflate.c
1329
if (deflateStateCheck(source) || dest == Z_NULL) {
common/dist/zlib/deflate.c
1338
if (ds == Z_NULL) return Z_MEM_ERROR;
common/dist/zlib/deflate.c
1349
if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
common/dist/zlib/deflate.c
1350
ds->pending_buf == Z_NULL) {
common/dist/zlib/deflate.c
1635
(charf *)Z_NULL), \
common/dist/zlib/deflate.c
396
if (version == Z_NULL || version[0] != my_version[0] ||
common/dist/zlib/deflate.c
400
if (strm == Z_NULL) return Z_STREAM_ERROR;
common/dist/zlib/deflate.c
402
strm->msg = Z_NULL;
common/dist/zlib/deflate.c
443
if (s == Z_NULL) return Z_MEM_ERROR;
common/dist/zlib/deflate.c
450
s->gzhead = Z_NULL;
common/dist/zlib/deflate.c
510
if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
common/dist/zlib/deflate.c
511
s->pending_buf == Z_NULL) {
common/dist/zlib/deflate.c
542
if (strm == Z_NULL ||
common/dist/zlib/deflate.c
546
if (s == Z_NULL || s->strm != strm || (s->status != INIT_STATE &&
common/dist/zlib/deflate.c
569
if (deflateStateCheck(strm) || dictionary == Z_NULL)
common/dist/zlib/deflate.c
638
if (dictionary != Z_NULL && len)
common/dist/zlib/deflate.c
640
if (dictLength != Z_NULL)
common/dist/zlib/deflate.c
654
strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
common/dist/zlib/deflate.c
671
s->wrap == 2 ? crc32(0L, Z_NULL, 0) :
common/dist/zlib/deflate.c
673
adler32(0L, Z_NULL, 0);
common/dist/zlib/deflate.c
726
if (bits != Z_NULL)
common/dist/zlib/deflate.c
728
if (pending != Z_NULL) {
common/dist/zlib/deflate.c
741
if (bits != Z_NULL)
common/dist/zlib/deflate.c
895
if (s->gzhead != Z_NULL) { /* user-supplied gzip header */
common/dist/zlib/deflate.c
897
if (s->gzhead->extra != Z_NULL)
common/dist/zlib/deflate.c
900
if (str != Z_NULL)
common/dist/zlib/deflate.c
905
if (str != Z_NULL)
common/dist/zlib/deflate.c
992
if (strm->next_out == Z_NULL ||
common/dist/zlib/deflate.c
993
(strm->avail_in != 0 && strm->next_in == Z_NULL) ||
common/dist/zlib/examples/fitblk.c
148
def.zalloc = Z_NULL;
common/dist/zlib/examples/fitblk.c
149
def.zfree = Z_NULL;
common/dist/zlib/examples/fitblk.c
150
def.opaque = Z_NULL;
common/dist/zlib/examples/fitblk.c
180
inf.zalloc = Z_NULL;
common/dist/zlib/examples/fitblk.c
181
inf.zfree = Z_NULL;
common/dist/zlib/examples/fitblk.c
182
inf.opaque = Z_NULL;
common/dist/zlib/examples/fitblk.c
184
inf.next_in = Z_NULL;
common/dist/zlib/examples/gun.c
399
strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */
common/dist/zlib/examples/gun.c
469
outd.crc = crc32(0L, Z_NULL, 0);
common/dist/zlib/examples/gun.c
479
strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */
common/dist/zlib/examples/gun.c
608
if (strm->next_in != Z_NULL) {
common/dist/zlib/examples/gun.c
640
strm.zalloc = Z_NULL;
common/dist/zlib/examples/gun.c
641
strm.zfree = Z_NULL;
common/dist/zlib/examples/gun.c
642
strm.opaque = Z_NULL;
common/dist/zlib/examples/gzappend.c
283
strm->zalloc = Z_NULL;
common/dist/zlib/examples/gzappend.c
284
strm->zfree = Z_NULL;
common/dist/zlib/examples/gzappend.c
285
strm->opaque = Z_NULL;
common/dist/zlib/examples/gzappend.c
295
crc = crc32(0L, Z_NULL, 0);
common/dist/zlib/examples/gzjoin.c
268
*crc = crc32(0L, Z_NULL, 0);
common/dist/zlib/examples/gzjoin.c
300
strm.zalloc = Z_NULL;
common/dist/zlib/examples/gzjoin.c
301
strm.zfree = Z_NULL;
common/dist/zlib/examples/gzjoin.c
302
strm.opaque = Z_NULL;
common/dist/zlib/examples/gzjoin.c
304
strm.next_in = Z_NULL;
common/dist/zlib/examples/gzlog.c
620
strm.zalloc = Z_NULL;
common/dist/zlib/examples/gzlog.c
621
strm.zfree = Z_NULL;
common/dist/zlib/examples/gzlog.c
622
strm.opaque = Z_NULL;
common/dist/zlib/examples/gznorm.c
93
strm.zalloc = Z_NULL;
common/dist/zlib/examples/gznorm.c
94
strm.zfree = Z_NULL;
common/dist/zlib/examples/gznorm.c
95
strm.opaque = Z_NULL;
common/dist/zlib/examples/gznorm.c
97
strm.next_in = Z_NULL;
common/dist/zlib/examples/zpipe.c
102
strm.zalloc = Z_NULL;
common/dist/zlib/examples/zpipe.c
103
strm.zfree = Z_NULL;
common/dist/zlib/examples/zpipe.c
104
strm.opaque = Z_NULL;
common/dist/zlib/examples/zpipe.c
106
strm.next_in = Z_NULL;
common/dist/zlib/examples/zpipe.c
46
strm.zalloc = Z_NULL;
common/dist/zlib/examples/zpipe.c
47
strm.zfree = Z_NULL;
common/dist/zlib/examples/zpipe.c
48
strm.opaque = Z_NULL;
common/dist/zlib/examples/zran.c
141
index->strm.state = Z_NULL; // so inflateEnd() can work
common/dist/zlib/examples/zran.c
177
index->strm.zalloc = Z_NULL;
common/dist/zlib/examples/zran.c
178
index->strm.zfree = Z_NULL;
common/dist/zlib/examples/zran.c
179
index->strm.opaque = Z_NULL;
common/dist/zlib/examples/zran.c
285
if (strm == Z_NULL || bits < 0 || bits > 16)
common/dist/zlib/examples/zran.c
341
index->strm.state == Z_NULL)
common/dist/zlib/gzread.c
110
state->strm.zalloc = Z_NULL;
common/dist/zlib/gzread.c
111
state->strm.zfree = Z_NULL;
common/dist/zlib/gzread.c
112
state->strm.opaque = Z_NULL;
common/dist/zlib/gzread.c
114
state->strm.next_in = Z_NULL;
common/dist/zlib/gzwrite.c
33
strm->zalloc = Z_NULL;
common/dist/zlib/gzwrite.c
34
strm->zfree = Z_NULL;
common/dist/zlib/gzwrite.c
35
strm->opaque = Z_NULL;
common/dist/zlib/infback.c
106
next = Z_NULL; \
common/dist/zlib/infback.c
211
if (strm == Z_NULL || strm->state == Z_NULL)
common/dist/zlib/infback.c
216
strm->msg = Z_NULL;
common/dist/zlib/infback.c
221
have = next != Z_NULL ? strm->avail_in : 0;
common/dist/zlib/infback.c
32
if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
common/dist/zlib/infback.c
35
if (strm == Z_NULL || window == Z_NULL ||
common/dist/zlib/infback.c
38
strm->msg = Z_NULL; /* in case we return an error */
common/dist/zlib/infback.c
55
if (state == Z_NULL) return Z_MEM_ERROR;
common/dist/zlib/infback.c
577
if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0)
common/dist/zlib/infback.c
580
strm->state = Z_NULL;
common/dist/zlib/inflate.c
108
strm->msg = Z_NULL;
common/dist/zlib/inflate.c
1169
if (state->window != Z_NULL) ZFREE(strm, state->window);
common/dist/zlib/inflate.c
117
state->head = Z_NULL;
common/dist/zlib/inflate.c
1171
strm->state = Z_NULL;
common/dist/zlib/inflate.c
1185
if (state->whave && dictionary != Z_NULL) {
common/dist/zlib/inflate.c
1191
if (dictLength != Z_NULL)
common/dist/zlib/inflate.c
1210
dictid = adler32(0L, Z_NULL, 0);
common/dist/zlib/inflate.c
1343
if (inflateStateCheck(source) || dest == Z_NULL)
common/dist/zlib/inflate.c
1350
if (copy == Z_NULL) return Z_MEM_ERROR;
common/dist/zlib/inflate.c
1352
window = Z_NULL;
common/dist/zlib/inflate.c
1353
if (state->window != Z_NULL) {
common/dist/zlib/inflate.c
1356
if (window == Z_NULL) {
common/dist/zlib/inflate.c
1372
if (window != Z_NULL)
common/dist/zlib/inflate.c
164
if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
common/dist/zlib/inflate.c
166
state->window = Z_NULL;
common/dist/zlib/inflate.c
180
if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
common/dist/zlib/inflate.c
183
if (strm == Z_NULL) return Z_STREAM_ERROR;
common/dist/zlib/inflate.c
184
strm->msg = Z_NULL; /* in case we return an error */
common/dist/zlib/inflate.c
201
if (state == Z_NULL) return Z_MEM_ERROR;
common/dist/zlib/inflate.c
206
state->window = Z_NULL;
common/dist/zlib/inflate.c
211
strm->state = Z_NULL;
common/dist/zlib/inflate.c
261
if (state->window == Z_NULL) {
common/dist/zlib/inflate.c
265
if (state->window == Z_NULL) return 1;
common/dist/zlib/inflate.c
499
(strm->next_in == Z_NULL && strm->avail_in != 0))
common/dist/zlib/inflate.c
502
if (inflateStateCheck(strm) || strm->next_out == Z_NULL ||
common/dist/zlib/inflate.c
503
(strm->next_in == Z_NULL && strm->avail_in != 0))
common/dist/zlib/inflate.c
525
state->check = crc32(0L, Z_NULL, 0);
common/dist/zlib/inflate.c
531
if (state->head != Z_NULL)
common/dist/zlib/inflate.c
559
strm->adler = state->check = adler32(0L, Z_NULL, 0);
common/dist/zlib/inflate.c
577
if (state->head != Z_NULL)
common/dist/zlib/inflate.c
586
if (state->head != Z_NULL)
common/dist/zlib/inflate.c
595
if (state->head != Z_NULL) {
common/dist/zlib/inflate.c
608
if (state->head != Z_NULL)
common/dist/zlib/inflate.c
614
else if (state->head != Z_NULL)
common/dist/zlib/inflate.c
615
state->head->extra = Z_NULL;
common/dist/zlib/inflate.c
623
if (state->head != Z_NULL &&
common/dist/zlib/inflate.c
624
state->head->extra != Z_NULL &&
common/dist/zlib/inflate.c
648
if (state->head != Z_NULL &&
common/dist/zlib/inflate.c
649
state->head->name != Z_NULL &&
common/dist/zlib/inflate.c
659
else if (state->head != Z_NULL)
common/dist/zlib/inflate.c
660
state->head->name = Z_NULL;
common/dist/zlib/inflate.c
670
if (state->head != Z_NULL &&
common/dist/zlib/inflate.c
671
state->head->comment != Z_NULL &&
common/dist/zlib/inflate.c
681
else if (state->head != Z_NULL)
common/dist/zlib/inflate.c
682
state->head->comment = Z_NULL;
common/dist/zlib/inflate.c
695
if (state->head != Z_NULL) {
common/dist/zlib/inflate.c
699
strm->adler = state->check = crc32(0L, Z_NULL, 0);
common/dist/zlib/inflate.c
714
strm->adler = state->check = adler32(0L, Z_NULL, 0);
common/dist/zlib/inflate.c
92
if (strm == Z_NULL ||
common/dist/zlib/inflate.c
96
if (state == Z_NULL || state->strm != strm ||
common/dist/zlib/test/example.c
520
if (compr == Z_NULL || uncompr == Z_NULL) {
common/dist/zlib/test/infcover.c
231
strm->opaque = Z_NULL;
common/dist/zlib/test/infcover.c
232
strm->zalloc = Z_NULL;
common/dist/zlib/test/infcover.c
233
strm->zfree = Z_NULL;
common/dist/zlib/test/infcover.c
295
strm.next_in = Z_NULL;
common/dist/zlib/test/infcover.c
357
strm.next_in = Z_NULL;
common/dist/zlib/test/infcover.c
362
ret = inflateSetDictionary(&strm, Z_NULL, 0);
common/dist/zlib/test/infcover.c
375
strm.next_in = Z_NULL;
common/dist/zlib/test/infcover.c
381
strm.next_in = Z_NULL;
common/dist/zlib/test/infcover.c
394
ret = inflate(Z_NULL, 0); assert(ret == Z_STREAM_ERROR);
common/dist/zlib/test/infcover.c
395
ret = inflateEnd(Z_NULL); assert(ret == Z_STREAM_ERROR);
common/dist/zlib/test/infcover.c
396
ret = inflateCopy(Z_NULL, Z_NULL); assert(ret == Z_STREAM_ERROR);
common/dist/zlib/test/infcover.c
415
strm.next_in = Z_NULL;
common/dist/zlib/test/infcover.c
453
if (desc == Z_NULL) {
common/dist/zlib/test/infcover.c
458
if (state != Z_NULL)
common/dist/zlib/test/infcover.c
467
return desc != Z_NULL; /* force error if desc not null */
common/dist/zlib/test/infcover.c
477
ret = inflateBackInit_(Z_NULL, 0, win, 0, 0);
common/dist/zlib/test/infcover.c
479
ret = inflateBackInit(Z_NULL, 0, win); assert(ret == Z_STREAM_ERROR);
common/dist/zlib/test/infcover.c
480
ret = inflateBack(Z_NULL, Z_NULL, Z_NULL, Z_NULL, Z_NULL);
common/dist/zlib/test/infcover.c
482
ret = inflateBackEnd(Z_NULL); assert(ret == Z_STREAM_ERROR);
common/dist/zlib/test/infcover.c
489
ret = inflateBack(&strm, pull, Z_NULL, push, Z_NULL);
common/dist/zlib/test/infcover.c
494
ret = inflateBack(&strm, pull, Z_NULL, push, &strm);
common/dist/zlib/test/infcover.c
497
ret = inflateBack(&strm, pull, &strm, push, Z_NULL);
common/dist/zlib/test/infcover.c
534
strm.next_in = Z_NULL;
common/dist/zlib/test/infcover.c
563
ret = inflateBack(&strm, pull, Z_NULL, push, Z_NULL);
common/dist/zlib/test/minigzip.c
208
gz->strm.opaque = Z_NULL;
common/dist/zlib/test/minigzip.c
213
gz->strm.avail_in = Z_NULL;
common/dist/zlib/test/minigzip.c
297
strm->next_in = Z_NULL;
common/dist/zlib/uncompr.c
44
if (left == 0 && dest == Z_NULL)
sys/arch/atari/stand/tostools/libtos/cread.c
349
s->crc = crc32(0L, Z_NULL, 0);
sys/arch/hpc/stand/hpcboot/file_manager.cpp
160
_crc = crc32(0L, Z_NULL, 0);
sys/lib/libsa/cread.c
408
s->crc = crc32(0L, Z_NULL, 0);
sys/net/zlib.c
1032
if (strm->next_out != Z_NULL) {
sys/net/zlib.c
1051
if (strm == Z_NULL || strm->state == Z_NULL ||
sys/net/zlib.c
1057
if ((strm->next_in == Z_NULL && strm->avail_in != 0) ||
sys/net/zlib.c
1186
if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
sys/net/zlib.c
1202
strm->state = Z_NULL;
sys/net/zlib.c
1223
if (source == Z_NULL || dest == Z_NULL || source->state == Z_NULL) {
sys/net/zlib.c
1232
if (ds == Z_NULL) return Z_MEM_ERROR;
sys/net/zlib.c
1243
if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
sys/net/zlib.c
1244
ds->pending_buf == Z_NULL) {
sys/net/zlib.c
1275
if (strm == Z_NULL || strm->state == Z_NULL) return 0;
sys/net/zlib.c
1680
(charf *)Z_NULL), \
sys/net/zlib.c
3414
if (z == Z_NULL || z->state == Z_NULL)
sys/net/zlib.c
3417
z->msg = Z_NULL;
sys/net/zlib.c
3419
inflate_blocks_reset(z->state->blocks, z, Z_NULL);
sys/net/zlib.c
3427
if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL)
sys/net/zlib.c
3429
if (z->state->blocks != Z_NULL)
sys/net/zlib.c
3432
z->state = Z_NULL;
sys/net/zlib.c
3440
if (vers == Z_NULL || vers[0] != ZLIB_VERSION[0] ||
sys/net/zlib.c
3445
if (z == Z_NULL)
sys/net/zlib.c
3447
z->msg = Z_NULL;
sys/net/zlib.c
3449
if (z->zalloc == Z_NULL)
sys/net/zlib.c
3454
if (z->zfree == Z_NULL) z->zfree = zcfree;
sys/net/zlib.c
3457
ZALLOC(z,1,sizeof(struct internal_state))) == Z_NULL)
sys/net/zlib.c
3459
z->state->blocks = Z_NULL;
sys/net/zlib.c
3479
inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w))
sys/net/zlib.c
3480
== Z_NULL)
sys/net/zlib.c
3509
if (z == Z_NULL || z->state == Z_NULL || z->next_in == Z_NULL)
sys/net/zlib.c
3653
if (z == Z_NULL || z->state == Z_NULL || z->state->mode != DICT0)
sys/net/zlib.c
3696
if (z == Z_NULL || z->state == Z_NULL)
sys/net/zlib.c
3750
if (z == Z_NULL || z->state == Z_NULL || z->state->blocks == Z_NULL)
sys/net/zlib.c
4026
if (c != Z_NULL)
sys/net/zlib.c
4036
if (s->checkfn != Z_NULL)
sys/net/zlib.c
4037
z->adler = s->check = (*s->checkfn)(0L, (const Bytef *)Z_NULL, 0);
sys/net/zlib.c
4047
(z,1,sizeof(struct inflate_blocks_state))) == Z_NULL)
sys/net/zlib.c
4050
(inflate_huft *)ZALLOC(z, sizeof(inflate_huft), MANY)) == Z_NULL)
sys/net/zlib.c
4053
return Z_NULL;
sys/net/zlib.c
4055
if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL)
sys/net/zlib.c
4059
return Z_NULL;
sys/net/zlib.c
4065
inflate_blocks_reset(s, z, Z_NULL);
sys/net/zlib.c
4109
if (s->sub.decode.codes == Z_NULL)
sys/net/zlib.c
4176
if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t, sizeof(uInt))) == Z_NULL)
sys/net/zlib.c
4253
s->sub.trees.tb = Z_NULL;
sys/net/zlib.c
4276
if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
sys/net/zlib.c
4324
inflate_blocks_reset(s, z, Z_NULL);
sys/net/zlib.c
4374
if (s->checkfn != Z_NULL)
sys/net/zlib.c
4567
*t = (inflate_huft *)Z_NULL;
sys/net/zlib.c
4621
u[0] = (inflate_huft *)Z_NULL; /* just to keep compilers happy */
sys/net/zlib.c
4622
q = (inflate_huft *)Z_NULL; /* ditto */
sys/net/zlib.c
4729
if ((v = (uIntf*)ZALLOC(z, 19, sizeof(uInt))) == Z_NULL)
sys/net/zlib.c
4731
r = huft_build(c, 19, 19, (uIntf*)Z_NULL, (uIntf*)Z_NULL,
sys/net/zlib.c
4760
if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
sys/net/zlib.c
4993
if ((c = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
sys/net/zlib.c
4995
if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
sys/net/zlib.c
5121
ZALLOC(z,1,sizeof(struct inflate_codes_state))) != Z_NULL)
sys/net/zlib.c
5352
if (s->checkfn != Z_NULL)
sys/net/zlib.c
5356
if (p != Z_NULL) {
sys/net/zlib.c
5380
if (s->checkfn != Z_NULL)
sys/net/zlib.c
5854
if (buf == Z_NULL) return 1L;
sys/net/zlib.c
825
if (vers == Z_NULL || vers[0] != my_version[0] ||
sys/net/zlib.c
829
if (strm == Z_NULL) return Z_STREAM_ERROR;
sys/net/zlib.c
831
strm->msg = Z_NULL;
sys/net/zlib.c
833
if (strm->zalloc == Z_NULL) {
sys/net/zlib.c
837
if (strm->zfree == Z_NULL) strm->zfree = zcfree;
sys/net/zlib.c
855
if (s == Z_NULL) return Z_MEM_ERROR;
sys/net/zlib.c
879
if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
sys/net/zlib.c
880
s->pending_buf == Z_NULL) {
sys/net/zlib.c
907
if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL)
sys/net/zlib.c
945
if (strm == Z_NULL || strm->state == Z_NULL ||
sys/net/zlib.c
946
strm->zalloc == Z_NULL || strm->zfree == Z_NULL) return Z_STREAM_ERROR;
sys/net/zlib.c
949
strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
sys/net/zlib.c
980
if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
sys/opencrypto/deflate.c
245
zbuf.opaque = Z_NULL;
sys/opencrypto/deflate.c
98
zbuf.opaque = Z_NULL;
tests/crypto/opencrypto/h_comp_zlib.c
74
z.zalloc = Z_NULL;
tests/crypto/opencrypto/h_comp_zlib.c
75
z.zfree = Z_NULL;
tests/crypto/opencrypto/h_comp_zlib_rnd.c
78
z.zalloc = Z_NULL;
tests/crypto/opencrypto/h_comp_zlib_rnd.c
79
z.zfree = Z_NULL;
usr.bin/gzip/gzip.c
614
z.zalloc = Z_NULL;
usr.bin/gzip/gzip.c
615
z.zfree = Z_NULL;
usr.bin/gzip/gzip.c
654
crc = crc32(0L, Z_NULL, 0);
usr.bin/gzip/gzip.c
867
crc = crc32(0L, Z_NULL, 0);