/third_party/openssl/test/ssl-tests/ |
D | 22-compression.conf | 5 test-0 = 0-tlsv1_3-both-compress 6 test-1 = 1-tlsv1_3-client-compress 7 test-2 = 2-tlsv1_3-server-compress 8 test-3 = 3-tlsv1_3-neither-compress 9 test-4 = 4-tlsv1_2-both-compress 10 test-5 = 5-tlsv1_2-client-compress 11 test-6 = 6-tlsv1_2-server-compress 12 test-7 = 7-tlsv1_2-neither-compress 15 [0-tlsv1_3-both-compress] 16 ssl_conf = 0-tlsv1_3-both-compress-ssl [all …]
|
D | 22-compression.conf.in | 22 name => "tlsv1_3-both-compress", 35 name => "tlsv1_3-client-compress", 47 name => "tlsv1_3-server-compress", 59 name => "tlsv1_3-neither-compress", 72 name => "tlsv1_2-both-compress", 86 name => "tlsv1_2-client-compress", 99 name => "tlsv1_2-server-compress", 112 name => "tlsv1_2-neither-compress",
|
/third_party/typescript/tests/baselines/reference/user/ |
D | uglify-js.log | 14 node_modules/uglify-js/lib/compress.js(196,42): error TS2554: Expected 0 arguments, but got 1. 15 node_modules/uglify-js/lib/compress.js(615,42): error TS2554: Expected 0 arguments, but got 1. 16 node_modules/uglify-js/lib/compress.js(705,27): error TS2339: Property 'name' does not exist on typ… 17 node_modules/uglify-js/lib/compress.js(724,16): error TS2339: Property 'walk' does not exist on typ… 18 node_modules/uglify-js/lib/compress.js(724,36): error TS2554: Expected 0 arguments, but got 1. 19 node_modules/uglify-js/lib/compress.js(734,28): error TS2339: Property 'uses_arguments' does not ex… 20 node_modules/uglify-js/lib/compress.js(735,16): error TS2339: Property 'argnames' does not exist on… 21 node_modules/uglify-js/lib/compress.js(738,32): error TS2339: Property 'argnames' does not exist on… 22 node_modules/uglify-js/lib/compress.js(742,20): error TS2339: Property 'rest' does not exist on typ… 23 node_modules/uglify-js/lib/compress.js(742,62): error TS2339: Property 'rest' does not exist on typ… [all …]
|
/third_party/python/Lib/test/ |
D | test_zlib.py | 94 self.assertRaises(zlib.error, zlib.compress, b'ERROR', 10) 99 self.assertRaises(TypeError, zlib.compress) 104 self.assertRaises(TypeError, zlib.compress, arg) 156 compressed = zlib.compress(data, 1) 172 x = zlib.compress(HAMLET_SCENE) 176 x = zlib.compress(HAMLET_SCENE, level=3) 179 zlib.compress(data=HAMLET_SCENE, level=3) 188 x = zlib.compress(data) 189 self.assertEqual(zlib.compress(bytearray(data)), x) 195 x = zlib.compress(HAMLET_SCENE) [all …]
|
D | test_lzma.py | 53 self.assertRaises(TypeError, lzc.compress) 54 self.assertRaises(TypeError, lzc.compress, b"foo", b"bar") 57 self.assertRaises(ValueError, lzc.compress, b"quux") 281 cdata = lzc.compress(INPUT) + lzc.flush() 287 cdata = lzc.compress(INPUT) + lzc.flush() 293 cdata = lzc.compress(INPUT) + lzc.flush() 299 cdata = lzc.compress(INPUT) 300 cdata += lzc.compress(b'') 301 cdata += lzc.compress(b'') 302 cdata += lzc.compress(b'') [all …]
|
/third_party/python/Lib/distutils/ |
D | archive_util.py | 55 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, argument 78 if compress is not None and compress not in compress_ext.keys(): 84 if compress != 'compress': 85 archive_name += compress_ext.get(compress, '') 107 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress]) 114 if compress == 'compress': 117 compressed_name = archive_name + compress_ext[compress] 119 cmd = [compress, archive_name, compressed_name] 121 cmd = [compress, '-f', archive_name]
|
/third_party/boost/libs/iostreams/src/ |
D | zlib.cpp | 110 void zlib_base::after(const char*& src_begin, char*& dest_begin, bool compress) in after() argument 116 const zlib::byte* buf = compress ? in after() 121 zlib::uint length = compress ? in after() 142 void zlib_base::reset(bool compress, bool realloc) in reset() argument 149 (compress ? deflateReset(s) : inflateReset(s)) : in reset() 150 (compress ? deflateEnd(s) : inflateEnd(s)) in reset() 157 ( const zlib_params& p, bool compress, in do_init() argument 173 compress ? in do_init()
|
D | bzip2.cpp | 114 int bzip2_base::end(bool compress, std::nothrow_t) in end() argument 119 return compress ? BZ2_bzCompressEnd(s) : BZ2_bzDecompressEnd(s); in end() 122 void bzip2_base::end(bool compress) in end() argument 125 end(compress, std::nothrow) in end() 129 int bzip2_base::compress(int action) in compress() function in boost::iostreams::detail::bzip2_base 140 ( bool compress, in do_init() argument 155 compress ? in do_init()
|
D | lzma.cpp | 117 void lzma_base::reset(bool compress, bool realloc) in reset() argument 123 init_stream(compress); in reset() 128 ( const lzma_params& p, bool compress, in do_init() argument 142 init_stream(compress); in do_init() 145 void lzma_base::init_stream(bool compress) in init_stream() argument 156 compress ? in init_stream()
|
/third_party/node/test/parallel/ |
D | test-zlib-flush-write-sync-interleaved.js | 11 const compress = createGzip(); constant 19 compress.write(chunk, common.mustCall(() => events.push({ written: chunk }))); 20 compress.flush(Z_PARTIAL_FLUSH, common.mustCall(() => { 22 const chunk = compress.read(); 28 compress.end(common.mustCall(() => {
|
/third_party/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/ |
D | TJCompressor.java | 329 public void compress(byte[] dstBuf, int flags) throws TJException { in compress() method in TJCompressor 349 compressedSize = compress(srcBuf, srcX, srcY, srcWidth, srcPitch, in compress() 353 compressedSize = compress(srcBuf, srcWidth, srcPitch, srcHeight, in compress() 358 compressedSize = compress(srcBufInt, srcX, srcY, srcWidth, srcStride, in compress() 362 compressedSize = compress(srcBufInt, srcWidth, srcStride, srcHeight, in compress() 379 public byte[] compress(int flags) throws TJException { in compress() method in TJCompressor 389 compress(buf, flags); in compress() 400 public void compress(BufferedImage srcImage, byte[] dstBuf, int flags) in compress() method in TJCompressor 403 compress(dstBuf, flags); in compress() 413 public byte[] compress(BufferedImage srcImage, int flags) in compress() method in TJCompressor [all …]
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/ |
D | TJCompressor.java | 329 public void compress(byte[] dstBuf, int flags) throws TJException { in compress() method in TJCompressor 349 compressedSize = compress(srcBuf, srcX, srcY, srcWidth, srcPitch, in compress() 353 compressedSize = compress(srcBuf, srcWidth, srcPitch, srcHeight, in compress() 358 compressedSize = compress(srcBufInt, srcX, srcY, srcWidth, srcStride, in compress() 362 compressedSize = compress(srcBufInt, srcWidth, srcStride, srcHeight, in compress() 379 public byte[] compress(int flags) throws TJException { in compress() method in TJCompressor 382 compress(buf, flags); in compress() 393 public void compress(BufferedImage srcImage, byte[] dstBuf, int flags) in compress() method in TJCompressor 396 compress(dstBuf, flags); in compress() 406 public byte[] compress(BufferedImage srcImage, int flags) in compress() method in TJCompressor [all …]
|
/third_party/mesa3d/src/intel/genxml/ |
D | gen_zipped_file.py | 34 compress = zlib.compressobj() 53 compressed_data += compress.compress(xml) 58 compressed_data += compress.flush()
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/scripts/ |
D | bundle.js | 10 , compress = process.argv[4]; variable 34 compress: {}, property 39 if (compress) { 40 var compressOpts = compress.split(','); 43 uglifyOpts.compress[pair[0]] = pair.length < 1 || pair[1] != 'false';
|
/third_party/node/deps/npm/node_modules/node-fetch-npm/src/ |
D | request.js | 80 this.compress = init.compress !== undefined 81 ? init.compress : input.compress !== undefined 82 ? input.compress : true 159 if (request.compress) {
|
/third_party/boost/boost/iostreams/filter/ |
D | bzip2.hpp | 163 void init( bool compress, in init() argument 167 do_init( compress, in init() 176 int compress(int action); 178 int end(bool compress, std::nothrow_t); 179 void end(bool compress); 181 void do_init( bool compress, 331 int result = compress(flush ? bzip2::finish : bzip2::run); in filter()
|
D | lzma.hpp | 154 bool compress, in init() argument 158 do_init( p, compress, in init() 166 bool compress ); 169 void reset(bool compress, bool realloc); 171 void do_init( const lzma_params& p, bool compress, 175 void init_stream(bool compress);
|
/third_party/boost/tools/boost_install/test/iostreams/bzip2-1.0.8/ |
D | Makefile-libbz2_so | 33 compress.o \ 54 compress.o: compress.c 55 $(CC) $(CFLAGS) -c compress.c
|
/third_party/bzip2/ |
D | Makefile-libbz2_so | 33 compress.o \ 54 compress.o: compress.c 55 $(CC) $(CFLAGS) -c compress.c
|
/third_party/boost/tools/boost_install/test/iostreams/bzip2-1.0.6/ |
D | Makefile-libbz2_so | 33 compress.o \ 54 compress.o: compress.c 55 $(CC) $(CFLAGS) -c compress.c
|
/third_party/python/Lib/distutils/tests/ |
D | test_archive_util.py | 72 self._make_tarball(tmpdir, name, '.tar', compress=None) 77 self._make_tarball(tmpdir, 'archive', '.tar.gz', compress='gzip') 82 self._make_tarball(tmpdir, 'archive', '.tar.bz2', compress='bzip2') 87 self._make_tarball(tmpdir, 'archive', '.tar.xz', compress='xz') 187 make_tarball(base_name, 'dist', compress=None) 198 make_tarball(base_name, 'dist', compress=None, dry_run=True) 216 make_tarball(base_name, 'dist', compress='compress') 230 make_tarball(base_name, 'dist', compress='compress', 375 archive_name = make_tarball(base_name, 'dist', compress=None,
|
/third_party/python/Lib/encodings/ |
D | bz2_codec.py | 17 return (bz2.compress(input), len(input)) 37 c = self.compressobj.compress(input) 40 return self.compressobj.compress(input)
|
D | zlib_codec.py | 15 return (zlib.compress(input), len(input)) 35 c = self.compressobj.compress(input) 38 return self.compressobj.compress(input)
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | MtxWriter.java | 49 public byte[] compress(Font sfntlyFont) { in compress() method in MtxWriter 95 byte[] compressed1 = LzcompCompress.compress(block1); in packMtx() 96 byte[] compressed2 = LzcompCompress.compress(block2); in packMtx() 97 byte[] compressed3 = LzcompCompress.compress(block3); in packMtx()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | MtxWriter.java | 49 public byte[] compress(Font sfntlyFont) { in compress() method in MtxWriter 95 byte[] compressed1 = LzcompCompress.compress(block1); in packMtx() 96 byte[] compressed2 = LzcompCompress.compress(block2); in packMtx() 97 byte[] compressed3 = LzcompCompress.compress(block3); in packMtx()
|