Home
last modified time | relevance | path

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

/titanic_44/usr/src/uts/common/zmod/
H A Dinflate.c115 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
118 strm->msg = Z_NULL;
124 state->head = Z_NULL;
142 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
159 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
162 if (strm == Z_NULL) return Z_STREAM_ERROR;
163 strm->msg = Z_NULL; /* in case we return an error */
171 if (state == Z_NULL) return Z_MEM_ERROR;
186 strm->state = Z_NULL;
190 state->window = Z_NULL;
[all …]
H A Ddeflate.c242 if (version == Z_NULL || version[0] != my_version[0] ||
246 if (strm == Z_NULL) return Z_STREAM_ERROR;
248 strm->msg = Z_NULL;
278 if (s == Z_NULL) return Z_MEM_ERROR;
283 s->gzhead = Z_NULL;
303 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
304 s->pending_buf == Z_NULL) {
331 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL ||
368 if (strm == Z_NULL || strm->state == Z_NULL ||
374 strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
[all …]
H A Dadler32.c81 if (buf == Z_NULL)
H A Dcrc32.c229 if (buf == Z_NULL) return 0UL;
H A Dzlib.h207 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ macro
/titanic_44/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c872 if (version == Z_NULL || version[0] != my_version[0] ||
876 if (strm == Z_NULL)
879 strm->msg = Z_NULL;
881 if (strm->zalloc == Z_NULL) {
885 if (strm->zfree == Z_NULL) strm->zfree = zcfree;
903 if (s == Z_NULL)
928 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
929 s->pending_buf == Z_NULL) {
957 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL)
1001 if (strm == Z_NULL || strm->state == Z_NULL ||
[all …]
H A Dzlib.h504 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ macro
/titanic_44/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c602 if (strm == Z_NULL) return Z_STREAM_ERROR;
604 strm->msg = Z_NULL;
619 if (s == Z_NULL) return Z_MEM_ERROR;
641 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
642 s->pending_buf == Z_NULL) {
669 if (strm == Z_NULL || strm->state == Z_NULL ||
670 strm->zalloc == Z_NULL || strm->zfree == Z_NULL) return Z_STREAM_ERROR;
673 strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
737 if (strm == Z_NULL || state == Z_NULL) return Z_STREAM_ERROR;
739 if (strm->next_in == Z_NULL && strm->avail_in != 0) {
[all …]
H A Dzlib.h241 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ macro