Searched refs:Z_OK (Results 1 - 25 of 103) sorted by relevance

12345

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/examples/
H A Dzpipe.c21 def() returns Z_OK on success, Z_MEM_ERROR if memory could not be
39 if (ret != Z_OK)
73 return Z_OK;
77 inf() returns Z_OK on success, Z_MEM_ERROR if memory could not be
97 if (ret != Z_OK)
137 return ret == Z_STREAM_END ? Z_OK : Z_DATA_ERROR;
173 if (ret != Z_OK)
181 if (ret != Z_OK)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/examples/
H A Dzpipe.c21 def() returns Z_OK on success, Z_MEM_ERROR if memory could not be
39 if (ret != Z_OK)
73 return Z_OK;
77 inf() returns Z_OK on success, Z_MEM_ERROR if memory could not be
97 if (ret != Z_OK)
137 return ret == Z_STREAM_END ? Z_OK : Z_DATA_ERROR;
173 if (ret != Z_OK)
181 if (ret != Z_OK)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/
H A Dcompress.c18 compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
47 if (err != Z_OK) return err;
52 return err == Z_OK ? Z_BUF_ERROR : err;
H A Duncompr.c22 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
48 if (err != Z_OK) return err;
H A Dminigzip.c110 if (gz_compress_mmap(in, out) == Z_OK) return;
123 if (gzclose(out) != Z_OK) error("failed gzclose");
128 /* Try compressing the input file at once using mmap. Return Z_OK if
158 if (gzclose(out) != Z_OK) error("failed gzclose");
159 return Z_OK;
185 if (gzclose(in) != Z_OK) error("failed gzclose");
H A Dgzio.c118 s->z_err = Z_OK;
161 if (err != Z_OK || s->outbuf == Z_NULL) {
174 if (err != Z_OK || s->inbuf == Z_NULL) {
348 s->z_err = s->z_eof ? Z_DATA_ERROR : Z_OK;
358 int err = Z_OK;
482 if (s->z_err == Z_OK) {
488 if (s->z_err != Z_OK || s->z_eof) break;
525 if (s->last) s->z_err = Z_OK;
587 if (s->z_err != Z_OK) break;
734 if (len == 0 && s->z_err == Z_BUF_ERROR) s->z_err = Z_OK;
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/xtensa/boot/lib/
H A Dzmem.c63 if (r != Z_OK) {
72 if (r != Z_OK && r != Z_STREAM_END) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/
H A Dcompress.c18 compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
47 if (err != Z_OK) return err;
52 return err == Z_OK ? Z_BUF_ERROR : err;
H A Duncompr.c22 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
48 if (err != Z_OK) return err;
H A Dminigzip.c110 if (gz_compress_mmap(in, out) == Z_OK) return;
123 if (gzclose(out) != Z_OK) error("failed gzclose");
128 /* Try compressing the input file at once using mmap. Return Z_OK if
158 if (gzclose(out) != Z_OK) error("failed gzclose");
159 return Z_OK;
185 if (gzclose(in) != Z_OK) error("failed gzclose");
H A Dgzio.c118 s->z_err = Z_OK;
161 if (err != Z_OK || s->outbuf == Z_NULL) {
174 if (err != Z_OK || s->inbuf == Z_NULL) {
348 s->z_err = s->z_eof ? Z_DATA_ERROR : Z_OK;
358 int err = Z_OK;
482 if (s->z_err == Z_OK) {
488 if (s->z_err != Z_OK || s->z_eof) break;
525 if (s->last) s->z_err = Z_OK;
587 if (s->z_err != Z_OK) break;
734 if (len == 0 && s->z_err == Z_BUF_ERROR) s->z_err = Z_OK;
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/comp/
H A Dc_zlib.c163 if (err != Z_OK)
175 if (err != Z_OK)
194 int err = Z_OK;
208 if (err != Z_OK)
221 int err = Z_OK;
236 if (err != Z_OK)
259 if (i != Z_OK)
290 if (i != Z_OK)
325 if (err != Z_OK) return err;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/jffs2/
H A Dcompr_zlib.c81 if (Z_OK != zlib_deflateInit(&def_strm, 3)) {
101 if (ret != Z_OK) {
171 if (Z_OK != zlib_inflateInit2(&inf_strm, wbits)) {
177 while((ret = zlib_inflate(&inf_strm, Z_FINISH)) == Z_OK)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dutil.c107 Z_BEST_COMPRESSION) != Z_OK ||
139 if (uncompress(decompressed, &size, data, length) != Z_OK ||
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dutil.c107 Z_BEST_COMPRESSION) != Z_OK ||
139 if (uncompress(decompressed, &size, data, length) != Z_OK ||
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/crypto/
H A Ddeflate.c35 if (ret != Z_OK) {
57 if (ret != Z_OK) {
111 if (ret != Z_OK) {
141 if (ret != Z_OK) {
152 if (ret == Z_OK && !stream->avail_in && stream->avail_out) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dtscc.c91 if (zret != Z_OK) {
101 if ((zret != Z_OK) && (zret != Z_STREAM_END) && (zret != Z_DATA_ERROR)) {
174 if (zret != Z_OK) {
H A Dlclenc.c107 if (zret != Z_OK) {
118 if (zret != Z_OK) {
188 if (zret != Z_OK) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/lib/
H A Dcontent_encoding.c116 if(status == Z_OK || status == Z_STREAM_END) {
131 if(inflateEnd(z) == Z_OK)
139 /* status is always Z_OK at this point! */
150 if(inflateInit2(z, -MAX_WBITS) != Z_OK) {
180 if(inflateInit(z) != Z_OK)
292 if(inflateInit2(z, MAX_WBITS+32) != Z_OK) {
299 if(inflateInit2(z, -MAX_WBITS) != Z_OK) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/powerpc/boot/
H A Dgunzip_util.c77 if (r != Z_OK)
112 if (r != Z_OK && r != Z_STREAM_END)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/contrib/minizip/
H A Dmztools.c37 int err = Z_OK;
127 if (err != Z_OK) {
246 if (err == Z_OK) {
269 if (err == Z_OK) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/contrib/testzlib/
H A Dtestzlib.c193 int ret=Z_OK;
213 } while (ret==Z_OK);
234 int ret=Z_OK;
254 } while (ret==Z_OK);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/
H A Dzlib.h148 #define Z_OK 0 macro
203 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
238 (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK
262 was enough output space; if deflate returns with Z_OK, this function must be
281 deflate() returns Z_OK if some progress has been made (more input
296 deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the
323 inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
357 call of inflate(). If inflate returns Z_OK and with zero avail_out, it
403 total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described
415 inflate() returns Z_OK i
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/contrib/minizip/
H A Dmztools.c37 int err = Z_OK;
127 if (err != Z_OK) {
246 if (err == Z_OK) {
269 if (err == Z_OK) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/contrib/testzlib/
H A Dtestzlib.c193 int ret=Z_OK;
213 } while (ret==Z_OK);
234 int ret=Z_OK;
254 } while (ret==Z_OK);

Completed in 114 milliseconds

12345