/third_party/libwebsockets/win32port/zlib/ |
H A D | uncompr.c | 51 if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0))
|
H A D | zutil.h | 46 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
|
/third_party/skia/third_party/externals/zlib/contrib/tests/ |
H A D | infcover.cc | 343 if (ret != Z_OK && ret != Z_BUF_ERROR && ret != Z_NEED_DICT) in inf() 345 if (ret == Z_NEED_DICT) { in inf() 432 inf("8 b8 0 0 0 1", "need dictionary", 0, 8, 0, Z_NEED_DICT); in cover_wrap() 565 if (ret == Z_DATA_ERROR || ret == Z_NEED_DICT)
|
/third_party/zlib/test/ |
H A D | infcover.c | 321 if (ret != Z_OK && ret != Z_BUF_ERROR && ret != Z_NEED_DICT) in inf() 323 if (ret == Z_NEED_DICT) { in inf() 410 inf("8 b8 0 0 0 1", "need dictionary", 0, 8, 0, Z_NEED_DICT); in cover_wrap() 544 if (ret == Z_DATA_ERROR || ret == Z_NEED_DICT) in try()
|
/third_party/nghttp2/src/ |
H A D | nghttp2_gzip.c | 75 case Z_NEED_DICT: in nghttp2_gzip_inflate()
|
/third_party/libwebsockets/lib/roles/http/compression/deflate/ |
H A D | deflate.c | 77 case Z_NEED_DICT: in lcs_process_deflate()
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | uncompr.c | 81 err == Z_NEED_DICT ? Z_DATA_ERROR :
|
H A D | zutil.h | 63 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
|
/third_party/node/deps/zlib/ |
H A D | uncompr.c | 77 err == Z_NEED_DICT ? Z_DATA_ERROR : in uncompress2()
|
H A D | zutil.h | 74 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
|
/third_party/skia/third_party/externals/freetype/src/gzip/ |
H A D | zlib.h | 134 #define Z_NEED_DICT 2 macro 357 dictionary chosen by the compressor and returns Z_NEED_DICT; otherwise 366 been reached and all uncompressed output has been produced, Z_NEED_DICT if a 542 if this call returned Z_NEED_DICT. The dictionary chosen by the compressor
|
H A D | inflate.c | 216 return Z_NEED_DICT; in inflate()
|
/third_party/skia/third_party/externals/zlib/ |
H A D | uncompr.c | 81 err == Z_NEED_DICT ? Z_DATA_ERROR :
|
H A D | zutil.h | 67 #define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
|
/third_party/zlib/ |
H A D | uncompr.c | 77 err == Z_NEED_DICT ? Z_DATA_ERROR : in uncompress2()
|
/third_party/node/src/ |
H A D | node_zlib.cc | 82 V(Z_NEED_DICT) \ 830 err_ == Z_NEED_DICT && in DoThreadPoolWork() 843 err_ = Z_NEED_DICT; in DoThreadPoolWork() 906 case Z_NEED_DICT: in GetErrorInfo() 1060 // returns Z_NEED_DICT in Process() in SetDictionary() 1323 NODE_DEFINE_CONSTANT(target, Z_NEED_DICT); in DefineZlibConstants()
|
/third_party/node/deps/v8/third_party/zlib/google/ |
H A D | compression_utils_portable.cc | 195 if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0)) in UncompressHelper()
|
/third_party/node/deps/zlib/google/ |
H A D | compression_utils_portable.cc | 195 if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0)) in UncompressHelper()
|
/third_party/skia/third_party/externals/zlib/google/ |
H A D | compression_utils_portable.cc | 195 if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0)) in UncompressHelper()
|
/third_party/zlib/examples/ |
H A D | fitblk.c | 108 ret != Z_NEED_DICT); in recompress()
|
H A D | zpipe.c | 128 case Z_NEED_DICT: in inf()
|
/third_party/libwebsockets/lib/roles/ws/ext/ |
H A D | extension-permessage-deflate.c | 298 case Z_NEED_DICT: in lws_extension_callback_pm_deflate() 341 case Z_NEED_DICT: in lws_extension_callback_pm_deflate()
|
/third_party/python/Modules/ |
H A D | zlibmodule.c | 925 if (err == Z_NEED_DICT && self->zdict != NULL) { in zlib_Decompress_decompress_impl() 935 } while (self->zst.avail_out == 0 || err == Z_NEED_DICT); in zlib_Decompress_decompress_impl() 1309 if (err == Z_NEED_DICT && self->zdict != NULL) { in zlib_Decompress_flush_impl() 1319 } while (self->zst.avail_out == 0 || err == Z_NEED_DICT); in zlib_Decompress_flush_impl()
|
/third_party/zlib/contrib/pascal/ |
H A D | zlibpas.pas | 78 Z_NEED_DICT = 2;
|
/third_party/node/lib/ |
H A D | zlib.js | 100 Z_NEED_DICT: constants.Z_NEED_DICT,
|