Home
last modified time | relevance | path

Searched refs:Deflate (Results 1 – 25 of 65) sorted by relevance

123

/third_party/node/test/parallel/
Dtest-zlib-deflate-constructors.js9 assert.ok(zlib.Deflate() instanceof zlib.Deflate);
10 assert.ok(new zlib.Deflate() instanceof zlib.Deflate);
17 () => new zlib.Deflate({ chunkSize: 'test' }),
27 () => new zlib.Deflate({ chunkSize: -Infinity }),
37 () => new zlib.Deflate({ chunkSize: 0 }),
51 () => new zlib.Deflate({ windowBits: 'test' }),
61 () => new zlib.Deflate({ windowBits: -Infinity }),
71 () => new zlib.Deflate({ windowBits: Infinity }),
81 () => new zlib.Deflate({ windowBits: 0 }),
92 () => new zlib.Deflate({ level: 'test' }),
[all …]
Dtest-zlib.js39 [zlib.Deflate, zlib.Inflate],
41 [zlib.Deflate, zlib.Unzip],
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/contrib/ada/
Dmtest.adb42 Deflate : Filter_Type; variable
117 Deflate_Init (Deflate);
123 Translate (Deflate);
133 & ZLib.Count'Image (Total_Out (Deflate)));
135 Close (Deflate);
Dzlib-thin.ads125 function Deflate (strm : Z_Streamp; flush : Int) return Int; subprogspec
388 pragma Import (C, Deflate, "deflate");
/third_party/zlib/contrib/ada/
Dmtest.adb42 Deflate : Filter_Type; variable
117 Deflate_Init (Deflate);
123 Translate (Deflate);
133 & ZLib.Count'Image (Total_Out (Deflate)));
135 Close (Deflate);
Dzlib-thin.ads125 function Deflate (strm : Z_Streamp; flush : Int) return Int; subprogspec
388 pragma Import (C, Deflate, "deflate");
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/ada/
Dmtest.adb42 Deflate : Filter_Type; variable
117 Deflate_Init (Deflate);
123 Translate (Deflate);
133 & ZLib.Count'Image (Total_Out (Deflate)));
135 Close (Deflate);
Dzlib-thin.ads125 function Deflate (strm : Z_Streamp; flush : Int) return Int; subprogspec
388 pragma Import (C, Deflate, "deflate");
/third_party/grpc/src/python/grpcio_tests/tests_aio/unit/
Dcompression_test.py49 context.set_compression(grpc.Compression.Deflate)
52 context.set_compression(grpc.Compression.Deflate)
66 context.set_compression(grpc.Compression.Deflate)
73 context.set_compression(grpc.Compression.Deflate)
131 self._address, compression=grpc.Compression.Deflate) as channel:
150 call = multicallable(_REQUEST, compression=grpc.Compression.Deflate)
180 server = aio.server(compression=grpc.Compression.Deflate)
/third_party/grpc/src/python/grpcio/grpc/
D_compression.py18 Deflate = cygrpc.CompressionAlgorithm.deflate variable
23 Deflate: 'deflate',
D__init__.py2078 Deflate = _compression.Deflate variable in Compression
/third_party/grpc/examples/python/compression/
DREADME.md7 - `grpc.Compression.Deflate` - The "Deflate" algorithm is applied to the payload.
34 compression=grpc.Compression.Deflate)
Dclient.py30 "deflate": grpc.Compression.Deflate,
Dserver.py32 "deflate": grpc.Compression.Deflate,
/third_party/node/lib/
Dzlib.js726 function Deflate(opts) { class
727 if (!(this instanceof Deflate))
728 return new Deflate(opts);
731 ObjectSetPrototypeOf(Deflate.prototype, Zlib.prototype);
732 ObjectSetPrototypeOf(Deflate, Zlib);
886 Deflate, property
898 deflate: createConvenienceMethod(Deflate, false),
899 deflateSync: createConvenienceMethod(Deflate, true),
919 createDeflate: createProperty(Deflate),
/third_party/protobuf/src/google/protobuf/io/
Dgzip_stream.cc251 int GzipOutputStream::Deflate(int flush) { in Deflate() function in google::protobuf::io::GzipOutputStream
283 zerror_ = Deflate(Z_NO_FLUSH); in Next()
309 zerror_ = Deflate(Z_FULL_FLUSH); in Flush()
321 zerror_ = Deflate(Z_FINISH); in Close()
Dgzip_stream.h191 int Deflate(int flush);
/third_party/node/deps/npm/node_modules/minizlib/
Dindex.js233 class Deflate extends Zlib { class
303 exports.Deflate = Deflate
DREADME.md17 use as one-liners: `new zlib.Deflate().end(data).read()` will return the
35 - Deflate
/third_party/grpc/src/python/grpcio_tests/tests/unit/
D_compression_test.py54 grpc.Compression.Deflate: 'DeflateCompression',
323 'compression': grpc.Compression.Deflate,
332 'compression': grpc.Compression.Deflate,
/third_party/zlib/contrib/dotzlib/DotZLib/
DUnitTests.cs171 #region Deflate tests
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/contrib/dotzlib/DotZLib/
DUnitTests.cs171 #region Deflate tests
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/dotzlib/DotZLib/
DUnitTests.cs171 #region Deflate tests
/third_party/node/doc/api/
Dzlib.md10 Deflate/Inflate, and Brotli.
581 ## Class: `zlib.Deflate`
650 Decompress either a Gzip- or Deflate-compressed stream by auto-detecting
780 Creates and returns a new [`Deflate`][] object.
939 Compress a chunk of data with [`Deflate`][].
1185 [`Deflate`]: #zlib_class_zlib_deflate
/third_party/flutter/skia/third_party/externals/wuffs/doc/
Dbenchmarks.md78 # Deflate (including gzip and zlib)

123