/third_party/libwebsockets/lib/roles/http/compression/deflate/ |
H A D | deflate.c | 72 n = deflate(ctx->u.deflate, Z_SYNC_FLUSH); in lcs_process_deflate() 74 n = inflate(ctx->u.deflate, Z_SYNC_FLUSH); in lcs_process_deflate()
|
/third_party/libwebsockets/lib/roles/ws/ext/ |
H A D | extension-permessage-deflate.c | 294 n = inflate(&priv->rx, was_fin ? Z_SYNC_FLUSH : Z_NO_FLUSH); in lws_extension_callback_pm_deflate() 337 n = inflate(&priv->rx, Z_SYNC_FLUSH); in lws_extension_callback_pm_deflate() 445 m = Z_SYNC_FLUSH; in lws_extension_callback_pm_deflate() 467 if (m == Z_SYNC_FLUSH && !(len & LWS_WRITE_NO_FIN) && !pen && in lws_extension_callback_pm_deflate() 475 m == Z_SYNC_FLUSH && in lws_extension_callback_pm_deflate()
|
/third_party/ffmpeg/libavcodec/ |
H A D | flashsv.c | 152 zret = inflate(zstream, Z_SYNC_FLUSH); in flashsv2_prime() 170 zret = inflate(zstream, Z_SYNC_FLUSH); in flashsv2_prime() 186 zret = inflate(zstream, Z_SYNC_FLUSH); in flashsv2_prime() 191 zret = inflate(zstream, Z_SYNC_FLUSH); in flashsv2_prime()
|
H A D | zerocodec.c | 80 zret = inflate(zstream, Z_SYNC_FLUSH); in zerocodec_decode_frame()
|
H A D | mvha.c | 186 ret = inflate(zstream, Z_SYNC_FLUSH); in decode_frame()
|
H A D | wcmv.c | 189 zret = inflate(zstream, Z_SYNC_FLUSH); in decode_frame()
|
H A D | rasc.c | 509 zret = inflate(zstream, Z_SYNC_FLUSH); in decode_kfrm() 524 zret = inflate(zstream, Z_SYNC_FLUSH); in decode_kfrm()
|
H A D | zmbvenc.c | 275 if (deflate(zstream, Z_SYNC_FLUSH) != Z_OK) { in encode_frame()
|
/third_party/nghttp2/src/ |
H A D | nghttp2_gzip_test.c | 48 rv = deflate(&zst, Z_SYNC_FLUSH); in deflate_data()
|
/third_party/skia/third_party/externals/freetype/src/gzip/ |
H A D | zlib.h | 126 #define Z_PARTIAL_FLUSH 1 /* will be removed, use Z_SYNC_FLUSH instead */ 127 #define Z_SYNC_FLUSH 2 macro 227 If the parameter flush is set to Z_SYNC_FLUSH, all pending output is 235 Z_SYNC_FLUSH, and the compression state is reset so that decompression can 338 If the parameter flush is set to Z_SYNC_FLUSH, inflate flushes as much 340 not specified for values of the flush parameter other than Z_SYNC_FLUSH
|
/third_party/zlib/contrib/testzlib/ |
H A D | testzlib.c | 209 ret=deflate(&zcpr,(zcpr.avail_in==lOrigToDo) ? Z_FINISH : Z_SYNC_FLUSH);
in main() 250 ret=inflate(&zcpr,Z_SYNC_FLUSH);
in main()
|
/third_party/skia/third_party/externals/microhttpd/src/microspdy/ |
H A D | compression.c | 280 flush = Z_SYNC_FLUSH; in SPDYF_zlib_deflate() 313 while(flush != Z_SYNC_FLUSH); in SPDYF_zlib_deflate() 387 ret = inflate(strm, Z_SYNC_FLUSH); in SPDYF_zlib_inflate() 406 ret = inflate(strm, Z_SYNC_FLUSH); in SPDYF_zlib_inflate()
|
/third_party/ffmpeg/tools/ |
H A D | cws2fws.c | 107 ret = inflate(&zstream, Z_SYNC_FLUSH); in main()
|
/third_party/curl/src/ |
H A D | mkhelp.pl | 177 status = inflate(&z, Z_SYNC_FLUSH);
|
/third_party/node/deps/openssl/openssl/crypto/comp/ |
H A D | c_zlib.c | 180 err = deflate(&state->ostream, Z_SYNC_FLUSH); in zlib_stateful_compress_block() 201 err = inflate(&state->istream, Z_SYNC_FLUSH); in zlib_stateful_expand_block()
|
/third_party/openssl/crypto/comp/ |
H A D | c_zlib.c | 180 err = deflate(&state->ostream, Z_SYNC_FLUSH); in zlib_stateful_compress_block() 201 err = inflate(&state->istream, Z_SYNC_FLUSH); in zlib_stateful_expand_block()
|
/third_party/node/lib/ |
H A D | zlib.js | 83 Z_NO_FLUSH, Z_BLOCK, Z_PARTIAL_FLUSH, Z_SYNC_FLUSH, Z_FULL_FLUSH, Z_FINISH, 360 // Z_SYNC_FLUSH < Z_FULL_FLUSH < Z_FINISH 364 Z_SYNC_FLUSH, Z_FULL_FLUSH, Z_FINISH]; 739 this.flush(Z_SYNC_FLUSH,
|
/third_party/python/Lib/test/ |
H A D | test_zlib.py | 477 sync_opt = ['Z_NO_FLUSH', 'Z_SYNC_FLUSH', 'Z_FULL_FLUSH', 506 @unittest.skipUnless(hasattr(zlib, 'Z_SYNC_FLUSH'), 507 'requires zlib.Z_SYNC_FLUSH') 534 second = co.flush(zlib.Z_SYNC_FLUSH) 572 d0 = co.compress(piece) + co.flush(zlib.Z_SYNC_FLUSH) 573 d1 = co.compress(piece[100:]) + co.flush(zlib.Z_SYNC_FLUSH) 574 d2 = co.compress(piece[:-100]) + co.flush(zlib.Z_SYNC_FLUSH)
|
/third_party/zlib/contrib/pascal/ |
H A D | zlibpas.pas | 70 Z_SYNC_FLUSH = 2;
|
/third_party/node/deps/zlib/ |
H A D | zlib.h | 170 #define Z_SYNC_FLUSH 2 macro 286 If the parameter flush is set to Z_SYNC_FLUSH, all pending output is 298 input data so far will be available to the decompressor, as for Z_SYNC_FLUSH. 305 for Z_SYNC_FLUSH, but the output is not aligned on a byte boundary, and up to 314 Z_SYNC_FLUSH, and the compression state is reset so that decompression can 322 avail_out). In the case of a Z_FULL_FLUSH or Z_SYNC_FLUSH, make sure that 432 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, Z_FINISH, 433 Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much 621 options Z_BLOCK, Z_PARTIAL_FLUSH, Z_SYNC_FLUSH, or Z_FULL_FLUSH. The
|
/third_party/mesa3d/src/intel/tools/ |
H A D | error2aub.c | 64 switch (inflate(&zstream, Z_SYNC_FLUSH)) { in zlib_inflate()
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | zlib.h | 166 #define Z_SYNC_FLUSH 2
macro 280 If the parameter flush is set to Z_SYNC_FLUSH, all pending output is
292 input data so far will be available to the decompressor, as for Z_SYNC_FLUSH.
299 for Z_SYNC_FLUSH, but the output is not aligned on a byte boundary, and up to
308 Z_SYNC_FLUSH, and the compression state is reset so that decompression can
316 avail_out). In the case of a Z_FULL_FLUSH or Z_SYNC_FLUSH, make sure that
420 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, Z_FINISH,
421 Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much
|
/third_party/zlib/contrib/delphi/ |
H A D | ZLib.pas | 169 Z_SYNC_FLUSH = 2;
|
/third_party/zlib/ |
H A D | zlib.h | 170 #define Z_SYNC_FLUSH 2 macro 286 If the parameter flush is set to Z_SYNC_FLUSH, all pending output is 298 input data so far will be available to the decompressor, as for Z_SYNC_FLUSH. 305 for Z_SYNC_FLUSH, but the output is not aligned on a byte boundary, and up to 314 Z_SYNC_FLUSH, and the compression state is reset so that decompression can 322 avail_out). In the case of a Z_FULL_FLUSH or Z_SYNC_FLUSH, make sure that 433 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, Z_FINISH, 434 Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much 622 options Z_BLOCK, Z_PARTIAL_FLUSH, Z_SYNC_FLUSH, or Z_FULL_FLUSH. The
|
/third_party/node/src/ |
H A D | node_zlib.cc | 312 flush != Z_SYNC_FLUSH && in Write() 1315 NODE_DEFINE_CONSTANT(target, Z_SYNC_FLUSH); in DefineZlibConstants()
|