Home
last modified time | relevance | path

Searched full:bz2 (Results 1 – 25 of 641) sorted by relevance

12345678910>>...26

/external/elfutils/tests/
DMakefile.am245 run-next-files.sh run-next-lines.sh testfile-only-debug-line.bz2 \
249 testfile.bz2 testfile2.bz2 testfile3.bz2 testfile4.bz2 \
250 testfile5.bz2 testfile6.bz2 testfile7.bz2 testfile8.bz2 \
251 testfile9.bz2 testfile10.bz2 testfile11.bz2 testfile12.bz2 \
252 testfile13.bz2 run-strip-test3.sh run-allfcts.sh \
253 testfile_class_func.bz2 testfile_nested_funcs.bz2 \
254 testfile-lto-gcc10.bz2 \
255 testfile-lto-gcc9.bz2 testfile-lto-gcc8.bz2 \
256 run-line2addr.sh run-elflint-test.sh testfile14.bz2 \
262 run-annobingroup.sh testfile-annobingroup.o.bz2 \
[all …]
DChangeLog12 * testfile_nvidia_linemap.bz2: New test file.
17 (EXTRA_DIST): Likewise and testfile_nvidia_linemap.bz2.
24 testfile-dwarf5-fat-lto.o.bz2.
26 * testfile-dwarf5-fat-lto.o.bz2: New test file.
56 * testfile-vars-clang-dwarf4-32.o.bz2: New test file.
57 * testfile-vars-clang-dwarf4-64.o.bz2: Likewise.
58 * testfile-vars-clang-dwarf5-32.o.bz2: Likewise.
59 * testfile-vars-clang-dwarf5-64.o.bz2: Likewise.
60 * testfile-vars-gcc-dwarf4-32.o.bz2: Likewise.
61 * testfile-vars-gcc-dwarf4-64.o.bz2: Likewise.
[all …]
/external/boringssl/src/util/fipstools/acvp/acvptool/test/
Dtests.json2 {"Wrapper": "modulewrapper", "In": "vectors/ACVP-AES-CBC.bz2", "Out": "expected/ACVP-AES-CBC.bz2"},
3 …: "testmodulewrapper", "In": "vectors/ACVP-AES-CBC-CS3.bz2", "Out": "expected/ACVP-AES-CBC-CS3.bz2
4 {"Wrapper": "modulewrapper", "In": "vectors/ACVP-AES-CCM.bz2", "Out": "expected/ACVP-AES-CCM.bz2"},
5 {"Wrapper": "modulewrapper", "In": "vectors/ACVP-AES-CTR.bz2", "Out": "expected/ACVP-AES-CTR.bz2"},
6 {"Wrapper": "modulewrapper", "In": "vectors/ACVP-AES-ECB.bz2", "Out": "expected/ACVP-AES-ECB.bz2"},
7 {"Wrapper": "modulewrapper", "In": "vectors/ACVP-AES-GCM.bz2", "Out": "expected/ACVP-AES-GCM.bz2"},
8 {"Wrapper": "modulewrapper", "In": "vectors/ACVP-AES-GMAC.bz2", "Out": "expected/ACVP-AES-GMAC.bz2"…
9 {"Wrapper": "modulewrapper", "In": "vectors/ACVP-AES-KW.bz2", "Out": "expected/ACVP-AES-KW.bz2"},
10 {"Wrapper": "modulewrapper", "In": "vectors/ACVP-AES-KWP.bz2", "Out": "expected/ACVP-AES-KWP.bz2"},
11 …apper": "testmodulewrapper", "In": "vectors/ACVP-AES-XTS.bz2", "Out": "expected/ACVP-AES-XTS.bz2"},
[all …]
/external/python/cpython2/PC/VC6/
Dbz2.dsp1 # Microsoft Developer Studio Project File - Name="bz2" - Package Owner=<4>
7 CFG=bz2 - Win32 Debug
11 !MESSAGE NMAKE /f "bz2.mak".
16 !MESSAGE NMAKE /f "bz2.mak" CFG="bz2 - Win32 Debug"
20 !MESSAGE "bz2 - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
21 !MESSAGE "bz2 - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
26 # PROP Scc_ProjName "bz2"
32 !IF "$(CFG)" == "bz2 - Win32 Release"
42 # PROP Intermediate_Dir "x86-temp-release\bz2"
57 …ase:"0x1D170000" /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"libc" /out:"./bz2.pyd"
[all …]
/external/python/cpython2/PC/VS7.1/
Dbz2.vcproj5 Name="bz2"
6 RootNamespace="bz2"
7 SccProjectName="bz2"
17 IntermediateDirectory=".\x86-temp-debug\bz2"
74 IntermediateDirectory=".\x86-temp-release\bz2"
97 OutputFile="./bz2.pyd"
102 ProgramDatabaseFile=".\./bz2.pdb"
105 ImportLibrary=".\./bz2.lib"
134 IntermediateDirectory=".\ia64-temp-release\bz2"
162 OutputFile="./bz2.pyd"
[all …]
/external/python/cpython3/Lib/encodings/
Dbz2_codec.py1 """Python 'bz2_codec' Codec - bz2 compression encoding.
11 import bz2 # this codec needs the optional bz2 module !
17 return (bz2.compress(input), len(input))
21 return (bz2.decompress(input), len(input))
33 self.compressobj = bz2.BZ2Compressor()
43 self.compressobj = bz2.BZ2Compressor()
49 self.decompressobj = bz2.BZ2Decompressor()
58 self.decompressobj = bz2.BZ2Decompressor()
70 name="bz2",
/external/python/cpython2/Lib/encodings/
Dbz2_codec.py1 """ Python 'bz2_codec' Codec - bz2 compression encoding
11 import bz2 # this codec needs the optional bz2 module !
26 output = bz2.compress(input)
44 output = bz2.decompress(input)
58 self.compressobj = bz2.BZ2Compressor()
68 self.compressobj = bz2.BZ2Compressor()
74 self.decompressobj = bz2.BZ2Decompressor()
83 self.decompressobj = bz2.BZ2Decompressor()
95 name="bz2",
/external/libwebsockets/scripts/
Dtravis_install.sh17 wget https://libwebsockets.org/openssl-1.1.0-trusty.tar.bz2 -O/tmp/openssl.tar.bz2
19 sudo tar xf /tmp/openssl.tar.bz2
27 wget https://libwebsockets.org/openssl-1.1.0-trusty.tar.bz2 -O/tmp/openssl.tar.bz2
29 sudo tar xf /tmp/openssl.tar.bz2
37 wget https://libwebsockets.org/openssl-1.1.0-trusty.tar.bz2 -O/tmp/openssl.tar.bz2
39 sudo tar xf /tmp/openssl.tar.bz2
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/
DBZip2UtilsTestCase.java35 assertTrue(BZip2Utils.isCompressedFilename("x.bz2")); in testIsCompressedFilename()
53 assertEquals(".bz2", BZip2Utils.getUncompressedFilename(".bz2")); in testGetUncompressedFilename()
57 assertEquals("x", BZip2Utils.getUncompressedFilename("x.bz2")); in testGetUncompressedFilename()
71 assertEquals(".bz2", BZip2Utils.getCompressedFilename("")); in testGetCompressedFilename()
72 assertEquals(" .bz2", BZip2Utils.getCompressedFilename(" ")); in testGetCompressedFilename()
73 assertEquals("x.bz2", BZip2Utils.getCompressedFilename("x")); in testGetCompressedFilename()
74 assertEquals("X.bz2", BZip2Utils.getCompressedFilename("X")); in testGetCompressedFilename()
75 assertEquals("x.tar.bz2", BZip2Utils.getCompressedFilename("x.tar")); in testGetCompressedFilename()
76 assertEquals("x.tar.bz2", BZip2Utils.getCompressedFilename("x.TAR")); in testGetCompressedFilename()
/external/toybox/www/
Doldnews.html18 <p><b>December 1, 2009</b> - <a href=downloads/toybox-0.1.0.tar.bz2>toybox-0.1.0</a> is out.</p>
24 <a href=downloads/toybox-0.0.9.2.tar.bz2>toybox-0.0.9.2</a>, off by one allocation error in patch.<…
30 <a href=downloads/toybox-0.0.9.1.tar.bz2>toybox 0.0.9.1</a> which is a bugfix
40 <a href=downloads/toybox-0.0.9.tar.bz2>toybox 0.0.9.tar.bz2</a> which is a minor packaging
47 <p><b>January 20, 2009</b> - <a href=downloads/toybox-0.0.8.tar.bz2>toybox 0.0.8</a>
64 <a href=downloads/toybox-0.0.7.tar.bz2>toybox 0.0.7</a>
68 <p><b>May 26, 2008</b> - <a href=downloads/toybox-0.0.6.tar.bz2>toybox 0.0.6</a>
79 Time to release <a href=downloads/toybox-0.0.5.tar.bz2>toybox 0.0.5</a>, with
94 <p><b>January 2, 2008</b> - And <a href=downloads/toybox-0.0.4.tar.bz2>toybox-0.0.4.tar.bz2</a> is …
108 <a href=downloads/toybox-0.0.3.tar.bz2>toybox-0.0.3.tar.bz2</a> since it's
[all …]
/external/armnn/python/pyarmnn/scripts/
Ddownload_test_resources.py6 … this script prior to running unit tests. Resources are stored as a tar.gz or a tar.bz2 archive and
17 … = "https://snapshots.linaro.org/components/pyarmnn-tests/pyarmnn_testdata_201100_20201022.tar.bz2"
21 # download archive - only support tar.gz or tar.bz2
24 if url.endswith(".tar.bz2"):
25 temp_filename += ".tar.bz2"
39 with tarfile.open(file_path, "r:bz2" if temp_filename.endswith(".tar.bz2") else "r:gz") as tar:
/external/mesa3d/.gitlab-ci/container/
Dx86_build.sh66 wget $XORG_RELEASES/util/$XORGMACROS_VERSION.tar.bz2
67 tar -xvf $XORGMACROS_VERSION.tar.bz2 && rm $XORGMACROS_VERSION.tar.bz2
71 wget $XCB_RELEASES/$XCBPROTO_VERSION.tar.bz2
72 tar -xvf $XCBPROTO_VERSION.tar.bz2 && rm $XCBPROTO_VERSION.tar.bz2
76 wget $XCB_RELEASES/$LIBXCB_VERSION.tar.bz2
77 tar -xvf $LIBXCB_VERSION.tar.bz2 && rm $LIBXCB_VERSION.tar.bz2
/external/protobuf/kokoro/linux/32-bit/
DDockerfile60 RUN wget http://am1.php.net/get/php-5.5.38.tar.bz2/from/this/mirror
61 RUN mv mirror php-5.5.38.tar.bz2
62 RUN tar -xvf php-5.5.38.tar.bz2
68 RUN wget http://am1.php.net/get/php-5.6.30.tar.bz2/from/this/mirror
69 RUN mv mirror php-5.6.30.tar.bz2
70 RUN tar -xvf php-5.6.30.tar.bz2
76 RUN wget http://am1.php.net/get/php-7.0.18.tar.bz2/from/this/mirror
77 RUN mv mirror php-7.0.18.tar.bz2
78 RUN tar -xvf php-7.0.18.tar.bz2
84 RUN wget http://am1.php.net/get/php-7.1.4.tar.bz2/from/this/mirror
[all …]
/external/elfutils/config/
Dupload-release.sh42 cp elfutils-$VERSION.tar.bz2 $VERSION/
44 gpg -b elfutils-$VERSION.tar.bz2
54 && chmod go+r $VERSION/elfutils-$VERSION.tar.bz2* \
55 && ln -sf $VERSION/elfutils-$VERSION.tar.bz2 elfutils-latest.tar.bz2 \
56 && ln -sf $VERSION/elfutils-$VERSION.tar.bz2.sig elfutils-latest.tar.bz2.sig \
/external/bzip2/
Dmakefile.msc31 .\\bzip2 -d < sample1.bz2 > sample1.tst
32 .\\bzip2 -d < sample2.bz2 > sample2.tst
33 .\\bzip2 -ds < sample3.bz2 > sample3.tst
35 @echo If fc finds an error on sample3.bz2, this could be
40 fc sample1.bz2 sample1.rb2
41 fc sample2.bz2 sample2.rb2
42 fc sample3.bz2 sample3.rb2
Dbzdiff42 FILE=`echo "$1" | sed 's/.bz2$//'`
43 bzip2 -cd "$FILE.bz2" | $comp $OPTIONS - "$FILE"
48 *.bz2)
50 *.bz2)
51 F=`echo "$2" | sed 's|.*/||;s|.bz2$||'`
65 *.bz2)
/external/python/cpython2/Lib/test/
Dtest_bz2.py15 bz2 = import_module('bz2') variable
16 from bz2 import BZ2File, BZ2Compressor, BZ2Decompressor
38 ret = bz2.decompress(data)
44 return bz2.decompress(data)
256 # Bug #1194181: bz2.BZ2File opened for write with mode "U"
304 with bz2.BZ2File(self.filename, 'wb') as f:
314 with bz2.BZ2File(self.filename, 'wb') as f:
319 with bz2.BZ2File(self.filename, 'rb') as f:
336 f = bz2.BZ2File(self.filename)
373 bz2c = bz2.BZ2Compressor()
[all …]
/external/python/cpython3/Doc/library/
Dbz2.rst1 :mod:`bz2` --- Support for :program:`bzip2` compression
4 .. module:: bz2
12 **Source code:** :source:`Lib/bz2.py`
19 The :mod:`bz2` module contains:
267 Below are some examples of typical usage of the :mod:`bz2` module.
271 >>> import bz2
280 >>> c = bz2.compress(data)
283 >>> d = bz2.decompress(c)
289 >>> import bz2
295 >>> comp = bz2.BZ2Compressor()
[all …]
/external/toybox/tests/
Dfstype.test9 bzcat "$BDIR"/squashfs.bz2 > temp.img
15 testing "$i" 'bzcat "$BDIR"/$i.bz2 | fstype -' "$i\n" "" ""
18 testing "msdos" 'bzcat "$BDIR"/msdos.bz2 | fstype -' 'vfat\n' "" ""
19 testing "reiserfs" 'bzcat "$BDIR"/reiser3.bz2 | fstype -' 'reiserfs\n' "" ""
21 #testing "blkid minix" 'bzcat "$BDIR"/minix.bz2 | blkid -'
Dman.test12 echo one | bzip2 >banana/man1/numbers.1.bz2
196 bzip2 >banana/man1/numbers.1.bz2 <<EOF
206 testing "-k ." "$MAN -k ." "numbers.1.bz2 - test -k\nnumbers.3.gz - No dash.\nnumbers.5 - See numbe…
207 testing "-k -k" "$MAN -k -k" "numbers.1.bz2 - test -k\n" "" ""
209 testing "-k ers.1" "$MAN -k ers.1" "numbers.1.bz2 - test -k\nnumbers.5 - See numbers.1\n" "" ""
212 echo Local development override. | bzip2 >walrus/man1/numbers.1.bz2
214 …:/dir0 -k ." "man -M walrus:banana -k ." "numbers.1.bz2 - Local development override.\nnumbers.1.b…
/external/python/cpython3/Doc/tools/templates/
Ddownload.html18 <tr><th>Format</th><th>Packed as .zip</th><th>Packed as .tar.bz2</th></tr>
21 …<td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.tar.bz2">Download</a> (ca. 13 MiB)<…
25 … <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.tar.bz2">Download</a> (ca. 13 MiB)</td>
29 <td><a href="{{ dlbase }}/python-{{ release }}-docs-html.tar.bz2">Download</a> (ca. 6 MiB)</td>
33 <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2">Download</a> (ca. 2 MiB)</td>
50 <p>Unix users should download the .tar.bz2 archives; these are bzipped tar
53 used to handle the ZIP archives if desired. The .tar.bz2 archives provide the
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/bzip2/
DBZip2Utils.java38 // tbz form, so .tar.bz2 has to be added explicitly
39 uncompressSuffix.put(".tar.bz2", ".tar");
42 uncompressSuffix.put(".bz2", "");
44 fileNameUtil = new FileNameUtil(uncompressSuffix, ".bz2");
67 * "package.tar". And any filenames with the generic ".bz2" suffix
82 * ".bz2" to the filename based on the standard behaviour of the "bzip2"
/external/protobuf/kokoro/linux/64-bit/
DDockerfile143 RUN wget http://am1.php.net/get/php-5.5.38.tar.bz2/from/this/mirror
144 RUN mv mirror php-5.5.38.tar.bz2
145 RUN tar -xvf php-5.5.38.tar.bz2
151 RUN wget http://am1.php.net/get/php-5.6.30.tar.bz2/from/this/mirror
152 RUN mv mirror php-5.6.30.tar.bz2
153 RUN tar -xvf php-5.6.30.tar.bz2
159 RUN wget http://am1.php.net/get/php-7.0.18.tar.bz2/from/this/mirror
160 RUN mv mirror php-7.0.18.tar.bz2
161 RUN tar -xvf php-7.0.18.tar.bz2
167 RUN wget http://am1.php.net/get/php-7.1.4.tar.bz2/from/this/mirror
[all …]
/external/python/cpython2/Doc/tools/templates/
Ddownload.html24 <th>{% trans %}Packed as .tar.bz2{% endtrans %}</th>
33 <a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.tar.bz2">
44 <a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.tar.bz2">
55 <a href="{{ dlbase }}/python-{{ release }}-docs-html.tar.bz2">
68 <a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2">
85 <p>{% trans %}Unix users should download the .tar.bz2 archives; these
89 .tar.bz2 archives provide the best compression and fastest download
/external/tensorflow/third_party/nasm/
Dworkspace.bzl9 …gleapis.com/mirror.tensorflow.org/www.nasm.us/pub/nasm/releasebuilds/2.13.03/nasm-2.13.03.tar.bz2",
10bz2/sha512/d7a6b4cee8dfd603d8d4c976e5287b5cc542fa0b466ff989b743276a6e28114e64289bf02a7819eca63142a…
11 "http://www.nasm.us/pub/nasm/releasebuilds/2.13.03/nasm-2.13.03.tar.bz2",

12345678910>>...26