Home
last modified time | relevance | path

Searched refs:gzip (Results 1 – 25 of 7749) sorted by relevance

12345678910>>...310

/dports/devel/libgsf/libgsf-1.14.47/gsf/
H A Dgsf-output-gzip.c69 ret = deflateInit2 (&gzip->stream, gzip->deflate_level, in init_gzip()
77 gzip->buf = g_new (guint8, gzip->buf_size); in init_gzip()
79 gzip->stream.next_out = gzip->buf; in init_gzip()
80 gzip->stream.avail_out = gzip->buf_size; in init_gzip()
120 else if (!gzip->raw && !gzip_output_header (gzip)) in gsf_output_gzip_setup()
180 size_t num_bytes = gzip->buf_size - gzip->stream.avail_out; in gzip_output_block()
182 if (!gsf_output_write (gzip->sink, num_bytes, gzip->buf)) { in gzip_output_block()
187 gzip->stream.next_out = gzip->buf; in gzip_output_block()
188 gzip->stream.avail_out = gzip->buf_size; in gzip_output_block()
251 gzip->crc = crc32 (gzip->crc, data, num_bytes); in gsf_output_gzip_write()
[all …]
H A Dgsf-input-gzip.c199 if (gzip->source) in gsf_input_gzip_set_source()
225 if (gzip->err) { in gsf_input_gzip_new()
297 gzip->buf = g_new (guint8, gzip->buf_size); in gsf_input_gzip_read()
309 if (remain < gzip->trailer_size || gzip->stop_byte_added) { in gsf_input_gzip_read()
335 gzip->stream.next_in = (Byte *)gzip->gzipped_data; in gsf_input_gzip_read()
347 gzip->crc = crc32 (gzip->crc, buffer, (uInt)(gzip->stream.next_out - buffer)); in gsf_input_gzip_read()
368 if (gsf_input_seek (gzip->source, gzip->header_size, G_SEEK_SET)) in gsf_input_gzip_seek()
399 gzip->err = NULL; in gsf_input_gzip_init()
405 gzip->stream.avail_in = gzip->stream.avail_out = 0; in gsf_input_gzip_init()
475 } else if (gzip->raw && gzip->uncompressed_size < 0) { in gsf_input_gzip_constructor()
[all …]
/dports/devel/fossil/fossil-src-2.17/src/
H A Dgzip.c42 } gzip; variable
60 blob_zero(&gzip.out); in gzip_begin()
72 gzip.iCRC = 0; in gzip_begin()
73 gzip.eState = 1; in gzip_begin()
91 if( gzip.eState==1 ){ in gzip_step()
96 gzip.eState = 2; in gzip_step()
98 gzip.iCRC = crc32(gzip.iCRC, gzip.stream.next_in, gzip.stream.avail_in); in gzip_step()
101 blob_append(&gzip.out, zOutBuf, nOut - gzip.stream.avail_out); in gzip_step()
119 *pOut = gzip.out; in gzip_finish()
120 blob_zero(&gzip.out); in gzip_finish()
[all …]
/dports/www/trafficserver/trafficserver-9.1.1/tests/gold_tests/headers/
H A Dnormalize_ae.gold4 gzip
6 gzip
10 gzip
12 gzip
17 gzip
19 x-gzip
30 gzip
32 gzip
36 gzip
38 gzip
[all …]
/dports/editors/neovim/neovim-0.6.1/runtime/plugin/
H A Dgzip.vim14 augroup gzip augroup
15 " Remove all gzip autocommands
19 " The functions are defined in autoload/gzip.vim.
22 " Use "gzip -d", gunzip isn't always available.
24 autocmd BufReadPost,FileReadPost *.gz call gzip#read("gzip -dn")
33 autocmd BufWritePost,FileWritePost *.gz call gzip#write("gzip")
42 autocmd FileAppendPre *.gz call gzip#appre("gzip -dn")
51 autocmd FileAppendPost *.gz call gzip#write("gzip")
52 autocmd FileAppendPost *.bz2 call gzip#write("bzip2")
55 autocmd FileAppendPost *.xz call gzip#write("xz -z")
[all …]
/dports/editors/vim/vim-8.2.3745/runtime/plugin/
H A Dgzip.vim14 augroup gzip augroup
15 " Remove all gzip autocommands
19 " The functions are defined in autoload/gzip.vim.
22 " Use "gzip -d", gunzip isn't always available.
24 autocmd BufReadPost,FileReadPost *.gz call gzip#read("gzip -dn")
33 autocmd BufWritePost,FileWritePost *.gz call gzip#write("gzip")
42 autocmd FileAppendPre *.gz call gzip#appre("gzip -dn")
51 autocmd FileAppendPost *.gz call gzip#write("gzip")
52 autocmd FileAppendPost *.bz2 call gzip#write("bzip2")
55 autocmd FileAppendPost *.xz call gzip#write("xz -z")
[all …]
/dports/lang/python311/Python-3.11.0a3/Lib/test/
H A Dtest_gzip.py18 gzip = import_helper.import_module('gzip') variable
82 with gzip.GzipFile(filename, 'w') as f:
85 with gzip.GzipFile(filename, 'a') as f:
87 with gzip.GzipFile(filename) as f:
156 f = gzip.GzipFile(self.filename, 'r')
168 f = gzip.GzipFile(self.filename, 'w')
562 datac = gzip.compress(data)
631 gzip.open(self.filename, "xb")
645 with gzip.open(filename) as f:
668 gzip.open(self.filename, "x")
[all …]
/dports/lang/python37/Python-3.7.12/Lib/test/
H A Dtest_gzip.py17 gzip = support.import_module('gzip') variable
81 with gzip.GzipFile(filename, 'w') as f:
84 with gzip.GzipFile(filename, 'a') as f:
86 with gzip.GzipFile(filename) as f:
155 f = gzip.GzipFile(self.filename, 'r')
167 f = gzip.GzipFile(self.filename, 'w')
529 datac = gzip.compress(data)
581 gzip.open(self.filename, "xb")
595 with gzip.open(filename) as f:
618 gzip.open(self.filename, "x")
[all …]
/dports/biology/vt/vt-0.57721/lib/libdeflate/tools/
H A Dgzip_tests.sh39 gzip() { function
89 gzip file
98 gzip file
185 gzip file
204 gzip file
243 gzip file
267 gzip 1
269 gzip -f 2
277 gzip 2
299 gzip file
[all …]
/dports/lang/python310/Python-3.10.1/Lib/test/
H A Dtest_gzip.py18 gzip = import_helper.import_module('gzip') variable
82 with gzip.GzipFile(filename, 'w') as f:
85 with gzip.GzipFile(filename, 'a') as f:
87 with gzip.GzipFile(filename) as f:
156 f = gzip.GzipFile(self.filename, 'r')
168 f = gzip.GzipFile(self.filename, 'w')
562 datac = gzip.compress(data)
623 gzip.open(self.filename, "xb")
637 with gzip.open(filename) as f:
660 gzip.open(self.filename, "x")
[all …]
/dports/archivers/libdeflate/libdeflate-1.8/scripts/
H A Dgzip_tests.sh39 gzip() { function
119 gzip file
128 gzip file
218 gzip file
237 gzip file
276 gzip file
300 gzip a
302 gzip -f b
310 gzip b
332 gzip file
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Lib/test/
H A Dtest_gzip.py17 gzip = support.import_module('gzip') variable
81 with gzip.GzipFile(filename, 'w') as f:
84 with gzip.GzipFile(filename, 'a') as f:
86 with gzip.GzipFile(filename) as f:
155 f = gzip.GzipFile(self.filename, 'r')
167 f = gzip.GzipFile(self.filename, 'w')
549 datac = gzip.compress(data)
601 gzip.open(self.filename, "xb")
615 with gzip.open(filename) as f:
638 gzip.open(self.filename, "x")
[all …]
/dports/databases/py-gdbm/Python-3.8.12/Lib/test/
H A Dtest_gzip.py17 gzip = support.import_module('gzip') variable
81 with gzip.GzipFile(filename, 'w') as f:
84 with gzip.GzipFile(filename, 'a') as f:
86 with gzip.GzipFile(filename) as f:
155 f = gzip.GzipFile(self.filename, 'r')
167 f = gzip.GzipFile(self.filename, 'w')
549 datac = gzip.compress(data)
601 gzip.open(self.filename, "xb")
615 with gzip.open(filename) as f:
638 gzip.open(self.filename, "x")
[all …]
/dports/lang/python-tools/Python-3.8.12/Lib/test/
H A Dtest_gzip.py17 gzip = support.import_module('gzip') variable
81 with gzip.GzipFile(filename, 'w') as f:
84 with gzip.GzipFile(filename, 'a') as f:
86 with gzip.GzipFile(filename) as f:
155 f = gzip.GzipFile(self.filename, 'r')
167 f = gzip.GzipFile(self.filename, 'w')
549 datac = gzip.compress(data)
601 gzip.open(self.filename, "xb")
615 with gzip.open(filename) as f:
638 gzip.open(self.filename, "x")
[all …]
/dports/lang/python39/Python-3.9.9/Lib/test/
H A Dtest_gzip.py17 gzip = support.import_module('gzip') variable
81 with gzip.GzipFile(filename, 'w') as f:
84 with gzip.GzipFile(filename, 'a') as f:
86 with gzip.GzipFile(filename) as f:
155 f = gzip.GzipFile(self.filename, 'r')
167 f = gzip.GzipFile(self.filename, 'w')
561 datac = gzip.compress(data)
613 gzip.open(self.filename, "xb")
627 with gzip.open(filename) as f:
650 gzip.open(self.filename, "x")
[all …]
/dports/lang/python38/Python-3.8.12/Lib/test/
H A Dtest_gzip.py17 gzip = support.import_module('gzip') variable
81 with gzip.GzipFile(filename, 'w') as f:
84 with gzip.GzipFile(filename, 'a') as f:
86 with gzip.GzipFile(filename) as f:
155 f = gzip.GzipFile(self.filename, 'r')
167 f = gzip.GzipFile(self.filename, 'w')
549 datac = gzip.compress(data)
601 gzip.open(self.filename, "xb")
615 with gzip.open(filename) as f:
638 gzip.open(self.filename, "x")
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Lib/test/
H A Dtest_gzip.py17 gzip = support.import_module('gzip') variable
81 with gzip.GzipFile(filename, 'w') as f:
84 with gzip.GzipFile(filename, 'a') as f:
86 with gzip.GzipFile(filename) as f:
155 f = gzip.GzipFile(self.filename, 'r')
167 f = gzip.GzipFile(self.filename, 'w')
549 datac = gzip.compress(data)
601 gzip.open(self.filename, "xb")
615 with gzip.open(filename) as f:
638 gzip.open(self.filename, "x")
[all …]
/dports/www/trafficserver/trafficserver-9.1.1/tests/gold_tests/pluginTest/compress/
H A Dcompress_userver.gold1 0/gzip, deflate, sdch, br
2 0/gzip
6 1/gzip
10 2/gzip
13 0/gzip;q=0.666
14 0/gzip;q=0.666x
15 0/gzip;q=#0.666
16 0/gzip; Q = 0.666
17 0/gzip;q=0.0
18 0/gzip;q=-0.1
[all …]
H A Dcompress.gold11 > X-Ats-Compress-Test: 0/gzip
12 > Accept-Encoding: gzip
15 < Content-Encoding: gzip
40 < Content-Encoding: gzip
46 > Accept-Encoding: gzip
49 < Content-Encoding: gzip
78 > Accept-Encoding: gzip
81 < Content-Encoding: gzip
106 < Content-Encoding: gzip
115 < Content-Encoding: gzip
[all …]
/dports/net/google-cloud-sdk/google-cloud-sdk/platform/gsutil/third_party/apitools/apitools/base/py/
H A Dgzip_test.py19 from apitools.base.py import gzip
140 f = gzip.GzipFile(self.filename, 'r')
149 f = gzip.GzipFile(self.filename, 'w')
227 with gzip.GzipFile(self.filename) as f:
247 with gzip.GzipFile(self.filename) as f:
337 f = gzip.GzipFile(self.filename, "rb")
445 datac = gzip.compress(data)
451 truncated = gzip.compress(data)[:-8]
501 with gzip.open(self.filename, "w") as f:
507 with gzip.open(self.filename, "r") as f:
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
H A Dgzip_test.py19 from apitools.base.py import gzip
140 f = gzip.GzipFile(self.filename, 'r')
149 f = gzip.GzipFile(self.filename, 'w')
227 with gzip.GzipFile(self.filename) as f:
247 with gzip.GzipFile(self.filename) as f:
337 f = gzip.GzipFile(self.filename, "rb")
445 datac = gzip.compress(data)
451 truncated = gzip.compress(data)[:-8]
501 with gzip.open(self.filename, "w") as f:
507 with gzip.open(self.filename, "r") as f:
[all …]
/dports/archivers/ark/ark-21.12.3/plugins/libsinglefileplugin/
H A Dkerfuffle_libgz.json.cmake23 "Description[ko]": "gzip 알고리즘으로 압축된 단일 파일 열고 풀기",
41 "Description[zh_CN]": "打开和解压 gzip 算法压缩的单个文件",
42 "Description[zh_TW]": "開啟並解壓縮以 gzip 演算法壓縮的單一檔案",
49 "Name[ast]": "Plugin pa gzip",
53 "Name[cs]": "Modul pro gzip",
62 "Name[fr]": "Module externe « gzip »",
63 "Name[gl]": "Complemento de gzip",
71 "Name[pl]": "Wtyczka gzip",
79 "Name[sr@ijekavianlatin]": "Priključak za gzip",
80 "Name[sr@latin]": "Priključak za gzip",
[all …]
/dports/lang/python-legacy/Python-2.7.18/Lib/test/
H A Dtest_gzip.py10 gzip = test_support.import_module('gzip') variable
60 with gzip.GzipFile(self.filename, 'wb') as f:
83 with gzip.GzipFile(self.filename, 'wb') as f:
89 with gzip.GzipFile(self.filename, 'rb') as f:
95 with gzip.GzipFile(self.filename, 'r') as f:
112 f = gzip.GzipFile(self.filename, 'r')
121 f = gzip.GzipFile(self.filename, 'w')
196 with gzip.GzipFile(self.filename) as f:
215 with gzip.GzipFile(self.filename) as f:
298 f = gzip.GzipFile(self.filename, "rb")
[all …]
/dports/lang/python27/Python-2.7.18/Lib/test/
H A Dtest_gzip.py10 gzip = test_support.import_module('gzip') variable
60 with gzip.GzipFile(self.filename, 'wb') as f:
83 with gzip.GzipFile(self.filename, 'wb') as f:
89 with gzip.GzipFile(self.filename, 'rb') as f:
95 with gzip.GzipFile(self.filename, 'r') as f:
112 f = gzip.GzipFile(self.filename, 'r')
121 f = gzip.GzipFile(self.filename, 'w')
196 with gzip.GzipFile(self.filename) as f:
215 with gzip.GzipFile(self.filename) as f:
298 f = gzip.GzipFile(self.filename, "rb")
[all …]
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/meta/compression/
H A Dcompression-multiple-chunks.tentative.any.js.ini2 [compressing 2 chunks with gzip should work]
8 [compressing 9 chunks with gzip should work]
11 [compressing 16 chunks with gzip should work]
17 [compressing 14 chunks with gzip should work]
20 [compressing 4 chunks with gzip should work]
26 [compressing 7 chunks with gzip should work]
41 [compressing 3 chunks with gzip should work]
53 [compressing 13 chunks with gzip should work]
59 [compressing 5 chunks with gzip should work]
74 [compressing 6 chunks with gzip should work]
[all …]

12345678910>>...310