Searched refs:Z_NULL (Results 1 – 9 of 9) sorted by relevance
/openbmc/u-boot/lib/zlib/ |
H A D | inflate.c | 12 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 D | deflate.c | 230 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 D | adler32.c | 78 if (buf == Z_NULL) in adler32()
|
/openbmc/linux/tools/perf/util/ |
H A D | zlib.c | 25 .zalloc = Z_NULL, in gzip_decompress_to_file() 26 .zfree = Z_NULL, in gzip_decompress_to_file() 27 .opaque = Z_NULL, in gzip_decompress_to_file() 29 .next_in = Z_NULL, in gzip_decompress_to_file()
|
/openbmc/qemu/migration/ |
H A D | multifd-zlib.c | 43 zs->zalloc = Z_NULL; in multifd_zlib_send_setup() 44 zs->zfree = Z_NULL; in multifd_zlib_send_setup() 45 zs->opaque = Z_NULL; in multifd_zlib_send_setup() 169 zs->zalloc = Z_NULL; in multifd_zlib_recv_setup() 170 zs->zfree = Z_NULL; in multifd_zlib_recv_setup() 171 zs->opaque = Z_NULL; in multifd_zlib_recv_setup() 173 zs->next_in = Z_NULL; in multifd_zlib_recv_setup()
|
/openbmc/qemu/ui/ |
H A D | vnc-clipboard.c | 34 .zalloc = Z_NULL, in inflate_buffer() 35 .zfree = Z_NULL, in inflate_buffer() 89 .zalloc = Z_NULL, in deflate_buffer() 90 .zfree = Z_NULL, in deflate_buffer()
|
/openbmc/u-boot/fs/cramfs/ |
H A D | uncompress.c | 67 stream.outcb = Z_NULL; in cramfs_uncompress_init()
|
/openbmc/u-boot/lib/ |
H A D | gzip.c | 66 s.opaque = Z_NULL; in zzip()
|
/openbmc/u-boot/include/u-boot/ |
H A D | zlib.h | 508 #define Z_NULL (void *)0 /* for initializing zalloc, zfree, opaque */ macro
|