Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/lib/zlib/
H A Dinflate.c12 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; in inflateReset()
15 strm->msg = Z_NULL; in inflateReset()
21 state->head = Z_NULL; in inflateReset()
38 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] || in inflateInit2_()
41 if (strm == Z_NULL) return Z_STREAM_ERROR; in inflateInit2_()
42 strm->msg = Z_NULL; /* in case we return an error */ in inflateInit2_()
50 if (state == Z_NULL) return Z_MEM_ERROR; in inflateInit2_()
65 strm->state = Z_NULL; in inflateInit2_()
69 state->window = Z_NULL; in inflateInit2_()
108 if (state->window == Z_NULL) { in updatewindow()
[all …]
H A Ddeflate.c230 if (version == Z_NULL || version[0] != my_version[0] ||
234 if (strm == Z_NULL) return Z_STREAM_ERROR;
236 strm->msg = Z_NULL;
266 if (s == Z_NULL) return Z_MEM_ERROR;
271 s->gzhead = Z_NULL;
293 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
294 s->pending_buf == Z_NULL) {
321 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL ||
358 if (strm == Z_NULL || strm->state == Z_NULL ||
364 strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
[all …]
H A Dadler32.c78 if (buf == Z_NULL) in adler32()
/rk3399_rockchip-uboot/fs/cramfs/
H A Duncompress.c67 stream.outcb = Z_NULL; in cramfs_uncompress_init()
/rk3399_rockchip-uboot/lib/
H A Dgzip.c67 s.opaque = Z_NULL; in zzip()
/rk3399_rockchip-uboot/include/u-boot/
H A Dzlib.h508 #define Z_NULL (void *)0 /* for initializing zalloc, zfree, opaque */ macro