/third_party/skia/third_party/externals/freetype/src/gzip/ |
H A D | inftrees.c | 109 case), or Z_DATA_ERROR if the input is invalid. */ in huft_build() 175 return Z_DATA_ERROR; in huft_build() 177 return Z_DATA_ERROR; in huft_build() 239 return Z_DATA_ERROR; /* overflow of MANY */ in huft_build() 315 if (r == Z_DATA_ERROR) in inflate_trees_bits() 320 r = Z_DATA_ERROR; in inflate_trees_bits() 351 if (r == Z_DATA_ERROR) in inflate_trees_dynamic() 356 r = Z_DATA_ERROR; in inflate_trees_dynamic() 366 if (r == Z_DATA_ERROR) in inflate_trees_dynamic() 377 r = Z_DATA_ERROR; in inflate_trees_dynamic() [all...] |
H A D | infblock.c | 181 r = Z_DATA_ERROR; in inflate_blocks() 191 r = Z_DATA_ERROR; in inflate_blocks() 224 r = Z_DATA_ERROR; in inflate_blocks() 254 if (r == Z_DATA_ERROR) in inflate_blocks() 298 r = Z_DATA_ERROR; in inflate_blocks() 322 if (t == (uInt)Z_DATA_ERROR) in inflate_blocks() 368 r = Z_DATA_ERROR; in inflate_blocks()
|
H A D | infcodes.c | 157 r = Z_DATA_ERROR; in inflate_codes() 190 r = Z_DATA_ERROR; in inflate_codes() 236 r = Z_DATA_ERROR; in inflate_codes()
|
H A D | zlib.h | 137 #define Z_DATA_ERROR (-3) macro 281 stream state was inconsistent, Z_DATA_ERROR if the stream was freed 367 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was 372 enough room in the output buffer when Z_FINISH is used. In the Z_DATA_ERROR 528 input, inflate() will return with the error code Z_DATA_ERROR instead of 549 inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the 561 if no more input was provided, Z_DATA_ERROR if no flush point has been found, 628 buffer, or Z_DATA_ERROR if the input data was corrupted.
|
H A D | inflate.c | 224 if (r == Z_DATA_ERROR) in inflate() 275 return Z_DATA_ERROR; in inflate()
|
/third_party/skia/third_party/externals/zlib/contrib/tests/ |
H A D | infcover.cc | 347 assert(ret == Z_DATA_ERROR); in inf() 421 inf("1f 8b 0 0", "bad gzip method", 0, 31, 0, Z_DATA_ERROR); in cover_wrap() 422 inf("1f 8b 8 80", "bad gzip flags", 0, 31, 0, Z_DATA_ERROR); in cover_wrap() 423 inf("77 85", "bad zlib method", 0, 15, 0, Z_DATA_ERROR); in cover_wrap() 425 inf("78 9c", "bad zlib window size", 0, 8, 0, Z_DATA_ERROR); in cover_wrap() 428 Z_DATA_ERROR); in cover_wrap() 431 inf("78 90", "bad zlib header check", 0, 47, 0, Z_DATA_ERROR); in cover_wrap() 454 ret = inflateSync(&strm); assert(ret == Z_DATA_ERROR); in cover_wrap() 462 ret = inflateUndermine(&strm, 1); assert(ret == Z_DATA_ERROR); in cover_wrap() 565 if (ret == Z_DATA_ERROR || re [all...] |
/third_party/zlib/test/ |
H A D | infcover.c | 325 assert(ret == Z_DATA_ERROR); in inf() 399 inf("1f 8b 0 0", "bad gzip method", 0, 31, 0, Z_DATA_ERROR); in cover_wrap() 400 inf("1f 8b 8 80", "bad gzip flags", 0, 31, 0, Z_DATA_ERROR); in cover_wrap() 401 inf("77 85", "bad zlib method", 0, 15, 0, Z_DATA_ERROR); in cover_wrap() 403 inf("78 9c", "bad zlib window size", 0, 8, 0, Z_DATA_ERROR); in cover_wrap() 406 Z_DATA_ERROR); in cover_wrap() 409 inf("78 90", "bad zlib header check", 0, 47, 0, Z_DATA_ERROR); in cover_wrap() 432 ret = inflateSync(&strm); assert(ret == Z_DATA_ERROR); in cover_wrap() 440 ret = inflateUndermine(&strm, 1); assert(ret == Z_DATA_ERROR); in cover_wrap() 544 if (ret == Z_DATA_ERROR || re in try() [all...] |
/third_party/zlib/examples/ |
H A D | gun.c | 198 not equal to Z_NULL), or Z_DATA_ERROR for invalid input. 231 return Z_DATA_ERROR; in lunpipe() 236 return Z_DATA_ERROR; in lunpipe() 256 return Z_DATA_ERROR; in lunpipe() 323 return Z_DATA_ERROR; in lunpipe() 378 Z_DATA_ERROR if the header or the compressed data is invalid, or if the 408 ret = first ? Z_DATA_ERROR : Z_ERRNO; in gunpipe() 424 ret = Z_DATA_ERROR; in gunpipe() 437 ret = Z_DATA_ERROR; in gunpipe() 490 ret = Z_DATA_ERROR; in gunpipe() [all...] |
H A D | zpipe.c | 88 allocated for processing, Z_DATA_ERROR if the deflate data is 129 ret = Z_DATA_ERROR; /* and fall through */ in inf() 130 case Z_DATA_ERROR: in inf() 147 return ret == Z_STREAM_END ? Z_OK : Z_DATA_ERROR; in inf() 164 case Z_DATA_ERROR: in zerr()
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | gzread.c | 162 gz_error(state, Z_DATA_ERROR, "unknown compression method");
167 gz_error(state, Z_DATA_ERROR, "unknown header flags set");
248 gz_error(state, Z_DATA_ERROR, "unexpected end of file");
263 if (ret == Z_DATA_ERROR) { /* deflate stream invalid */
264 gz_error(state, Z_DATA_ERROR,
278 gz_error(state, Z_DATA_ERROR, "unexpected end of file");
282 gz_error(state, Z_DATA_ERROR, "incorrect data check");
286 gz_error(state, Z_DATA_ERROR, "incorrect length check");
|
H A D | uncompr.c | 22 buffer, or Z_DATA_ERROR if the input data was corrupted.
52 return Z_DATA_ERROR;
|
/third_party/ffmpeg/libavcodec/ |
H A D | tscc.c | 92 // Z_DATA_ERROR means empty picture in decode_frame() 93 if (ret == Z_DATA_ERROR && !palette_has_changed) { in decode_frame() 97 if ((ret != Z_OK) && (ret != Z_STREAM_END) && (ret != Z_DATA_ERROR)) { in decode_frame() 105 if (ret != Z_DATA_ERROR) { in decode_frame()
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | uncompr.c | 24 Z_DATA_ERROR if the input data was corrupted, including if the input data is 81 err == Z_NEED_DICT ? Z_DATA_ERROR : 82 err == Z_BUF_ERROR && left + stream.avail_out ? Z_DATA_ERROR :
|
H A D | gzread.c | 204 if (ret == Z_DATA_ERROR) { /* deflate stream invalid */ 205 gz_error(state, Z_DATA_ERROR, 524 gz_error(state, Z_DATA_ERROR, "out of room to push characters");
|
/third_party/node/deps/zlib/ |
H A D | uncompr.c | 24 Z_DATA_ERROR if the input data was corrupted, including if the input data is 77 err == Z_NEED_DICT ? Z_DATA_ERROR : in uncompress2() 78 err == Z_BUF_ERROR && left + stream.avail_out ? Z_DATA_ERROR : in uncompress2()
|
H A D | gzread.c | 183 if (ret == Z_DATA_ERROR) { /* deflate stream invalid */ in gz_decomp() 184 gz_error(state, Z_DATA_ERROR, in gz_decomp() 478 gz_error(state, Z_DATA_ERROR, "out of room to push characters"); in gzungetc()
|
/third_party/skia/third_party/externals/zlib/ |
H A D | uncompr.c | 24 Z_DATA_ERROR if the input data was corrupted, including if the input data is 81 err == Z_NEED_DICT ? Z_DATA_ERROR : 82 err == Z_BUF_ERROR && left + stream.avail_out ? Z_DATA_ERROR :
|
H A D | gzread.c | 204 if (ret == Z_DATA_ERROR) { /* deflate stream invalid */ 205 gz_error(state, Z_DATA_ERROR, 526 gz_error(state, Z_DATA_ERROR, "out of room to push characters");
|
/third_party/zlib/ |
H A D | uncompr.c | 24 Z_DATA_ERROR if the input data was corrupted, including if the input data is 77 err == Z_NEED_DICT ? Z_DATA_ERROR : in uncompress2() 78 err == Z_BUF_ERROR && left + stream.avail_out ? Z_DATA_ERROR : in uncompress2()
|
H A D | gzread.c | 205 if (ret == Z_DATA_ERROR) { /* deflate stream invalid */ in gz_decomp() 206 gz_error(state, Z_DATA_ERROR, in gz_decomp() 558 gz_error(state, Z_DATA_ERROR, "out of room to push characters"); in gzungetc()
|
/third_party/nghttp2/src/ |
H A D | nghttp2_gzip.c | 73 case Z_DATA_ERROR: in nghttp2_gzip_inflate()
|
/third_party/libwebsockets/lib/roles/http/compression/deflate/ |
H A D | deflate.c | 79 case Z_DATA_ERROR: in lcs_process_deflate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | Compression.cpp | 39 case Z_DATA_ERROR: in convertZlibCodeToString() 40 return "zlib error: Z_DATA_ERROR"; in convertZlibCodeToString()
|
/third_party/node/deps/v8/third_party/zlib/google/ |
H A D | compression_utils_portable.cc | 196 return Z_DATA_ERROR; in UncompressHelper()
|
/third_party/node/deps/zlib/google/ |
H A D | compression_utils_portable.cc | 196 return Z_DATA_ERROR; in UncompressHelper()
|