Searched refs:Z_MEM_ERROR (Results 1 - 25 of 43) sorted by relevance

12

/external/zlib/src/examples/
H A Dfitblk.c94 return last deflate() return value, or Z_MEM_ERROR if inflate()
109 if (ret == Z_MEM_ERROR)
198 if (ret == Z_MEM_ERROR)
213 if (ret == Z_MEM_ERROR)
H A Dzran.c141 returns the number of access points on success (>= 1), Z_MEM_ERROR for out
200 if (ret == Z_MEM_ERROR || ret == Z_DATA_ERROR)
219 ret = Z_MEM_ERROR;
243 negative for error (Z_DATA_ERROR or Z_MEM_ERROR). If data is requested past
329 if (ret == Z_MEM_ERROR || ret == Z_DATA_ERROR)
378 case Z_MEM_ERROR:
399 len == Z_MEM_ERROR ? "out of memory" : "input corrupted");
H A Dzpipe.c31 def() returns Z_OK on success, Z_MEM_ERROR if memory could not be
87 inf() returns Z_OK on success, Z_MEM_ERROR if memory could not be
131 case Z_MEM_ERROR:
167 case Z_MEM_ERROR:
H A Dgzjoin.c331 case Z_MEM_ERROR:
/external/kernel-headers/original/linux/
H A Dzlib.h154 #define Z_MEM_ERROR (-4) macro
203 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
323 inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
421 if next_in or next_out was NULL), Z_MEM_ERROR if there was not enough memory,
486 deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
544 deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
621 inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
/external/llvm/lib/Support/
H A DCompression.cpp41 case Z_MEM_ERROR: return zlib::StatusOutOfMemory;
/external/chromium_org/third_party/zlib/
H A Dgzread.c121 gz_error(state, Z_MEM_ERROR, "out of memory");
136 gz_error(state, Z_MEM_ERROR, "out of memory");
259 if (ret == Z_MEM_ERROR) {
260 gz_error(state, Z_MEM_ERROR, "out of memory");
H A Dgzlib.c483 not try to free or allocate space if the error is Z_MEM_ERROR (out of
494 if (state->err != Z_MEM_ERROR)
505 if (err == Z_MEM_ERROR) {
512 state->err = Z_MEM_ERROR;
H A Dinflate.c189 if (state == Z_NULL) return Z_MEM_ERROR;
1203 return Z_MEM_ERROR;
1220 return Z_MEM_ERROR;
1277 return Z_MEM_ERROR;
1424 if (copy == Z_NULL) return Z_MEM_ERROR;
1431 return Z_MEM_ERROR;
H A Dgzwrite.c29 gz_error(state, Z_MEM_ERROR, "out of memory");
41 gz_error(state, Z_MEM_ERROR, "out of memory");
H A Ddeflate.c267 if (s == Z_NULL) return Z_MEM_ERROR;
300 strm->msg = (char*)ERR_MSG(Z_MEM_ERROR);
302 return Z_MEM_ERROR;
975 if (ds == Z_NULL) return Z_MEM_ERROR;
989 return Z_MEM_ERROR;
/external/zlib/src/
H A Dgzlib.c544 return state->err == Z_MEM_ERROR ? "out of memory" :
571 not try to free or allocate space if the error is Z_MEM_ERROR (out of
582 if (state->err != Z_MEM_ERROR)
597 if (err == Z_MEM_ERROR)
603 state->err = Z_MEM_ERROR;
H A Dgzread.c101 gz_error(state, Z_MEM_ERROR, "out of memory");
116 gz_error(state, Z_MEM_ERROR, "out of memory");
197 if (ret == Z_MEM_ERROR) {
198 gz_error(state, Z_MEM_ERROR, "out of memory");
H A Dgzwrite.c24 gz_error(state, Z_MEM_ERROR, "out of memory");
34 gz_error(state, Z_MEM_ERROR, "out of memory");
47 gz_error(state, Z_MEM_ERROR, "out of memory");
H A Dinflate.c210 if (state == Z_NULL) return Z_MEM_ERROR;
1218 return Z_MEM_ERROR;
1236 return Z_MEM_ERROR;
1319 return Z_MEM_ERROR;
1456 if (copy == Z_NULL) return Z_MEM_ERROR;
1463 return Z_MEM_ERROR;
H A Ddeflate.c278 if (s == Z_NULL) return Z_MEM_ERROR;
308 strm->msg = ERR_MSG(Z_MEM_ERROR);
310 return Z_MEM_ERROR;
1035 if (ds == Z_NULL) return Z_MEM_ERROR;
1049 return Z_MEM_ERROR;
/external/zlib/src/test/
H A Dinfcover.c328 assert(ret == Z_MEM_ERROR);
422 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR);
423 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR);
438 ret = inflateCopy(&copy, &strm); assert(ret == Z_MEM_ERROR);
542 assert(ret != Z_STREAM_ERROR && ret != Z_MEM_ERROR);
/external/qemu/distrib/zlib-1.2.3/
H A Dinflate.c164 if (state == Z_NULL) return Z_MEM_ERROR;
1121 return Z_MEM_ERROR;
1138 return Z_MEM_ERROR;
1194 return Z_MEM_ERROR;
1341 if (copy == Z_NULL) return Z_MEM_ERROR;
1348 return Z_MEM_ERROR;
H A Dzlib.h176 #define Z_MEM_ERROR (-4) macro
233 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
354 inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
452 if next_in or next_out was NULL), Z_MEM_ERROR if there was not enough memory,
532 deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
589 deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
728 inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
783 inflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
872 the paramaters are invalid, Z_MEM_ERROR if the internal state could not
1019 compress returns Z_OK if success, Z_MEM_ERROR i
[all...]
H A Ddeflate.c272 if (s == Z_NULL) return Z_MEM_ERROR;
300 strm->msg = (char*)ERR_MSG(Z_MEM_ERROR);
302 return Z_MEM_ERROR;
915 if (ds == Z_NULL) return Z_MEM_ERROR;
929 return Z_MEM_ERROR;
/external/chromium_org/third_party/zlib/contrib/minizip/
H A Dmztools.c131 err = Z_MEM_ERROR;
/external/zlib/src/contrib/minizip/
H A Dmztools.c141 err = Z_MEM_ERROR;
/external/chromium/sdch/open-vcdiff/src/
H A Dzlib.h176 #define Z_MEM_ERROR (-4) macro
233 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
354 inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
452 if next_in or next_out was NULL), Z_MEM_ERROR if there was not enough memory,
532 deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
589 deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
728 inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
783 inflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
872 the paramaters are invalid, Z_MEM_ERROR if the internal state could not
1019 compress returns Z_OK if success, Z_MEM_ERROR i
[all...]
/external/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dzlib.h176 #define Z_MEM_ERROR (-4) macro
233 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
354 inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
452 if next_in or next_out was NULL), Z_MEM_ERROR if there was not enough memory,
532 deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
589 deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
728 inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
783 inflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
872 the paramaters are invalid, Z_MEM_ERROR if the internal state could not
1019 compress returns Z_OK if success, Z_MEM_ERROR i
[all...]
/external/open-vcdiff/src/zlib/
H A Dzlib.h176 #define Z_MEM_ERROR (-4) macro
233 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
354 inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
452 if next_in or next_out was NULL), Z_MEM_ERROR if there was not enough memory,
532 deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
589 deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
728 inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
783 inflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
872 the paramaters are invalid, Z_MEM_ERROR if the internal state could not
1019 compress returns Z_OK if success, Z_MEM_ERROR i
[all...]

Completed in 277 milliseconds

12