| /external/zstd/programs/ |
| D | README.md | 4 Command Line Interface (CLI) can be created using the `make` command without any additional paramet… 6 - `zstd` : default CLI supporting gzip-like arguments; includes dictionary builder, benchmark, and … 7 - `zstd_nolegacy` : Same as `zstd` but without support for legacy zstd formats 8 - `zstd-small` : CLI optimized for minimal size; no dictionary builder, no benchmark, and no suppor… 9 - `zstd-compress` : version of CLI which can only compress into zstd format 10 - `zstd-decompress` : version of CLI which can only decompress zstd format 14 `zstd` scope can be altered by modifying the following `make` variables : 16 - __HAVE_THREAD__ : multithreading is automatically enabled when `pthread` is detected. 18 Example : `make zstd HAVE_THREAD=0` 23 - __ZSTD_LEGACY_SUPPORT__ : `zstd` can decompress files compressed by older versions of `zstd`. [all …]
|
| D | Makefile | 5 # This source code is licensed under both the BSD-style license (found in the 8 # You may select, at your option, one of the above-listed licenses. 10 # zstd : Command Line Utility, supporting gzip-like arguments 11 # zstd32 : Same as zstd, but forced to compile in 32-bits mode 12 # zstd-nolegacy : zstd without support of decompression of legacy versions 13 # zstd-small : minimal zstd without dictionary builder and benchmark 14 # zstd-compress : compressor-only version of zstd 15 # zstd-decompress : decompressor-only version of zstd 19 zstd-release: 24 ifeq ($(shell $(CC) -v 2>&1 | $(GREP) -c "gcc version "), 1) [all …]
|
| D | zstd.1 | 2 .TH "ZSTD" "1" "March 2024" "zstd 1.5.6" "User Commands" 5 \fBzstd\fR \- zstd, zstdmt, unzstd, zstdcat \- Compress or decompress \.zst files 8 \fBzstd\fR [\fIOPTIONS\fR] [\-|\fIINPUT\-FILE\fR] [\-o \fIOUTPUT\-FILE\fR] 11 \fBzstdmt\fR is equivalent to \fBzstd \-T0\fR 14 \fBunzstd\fR is equivalent to \fBzstd \-d\fR 17 \fBzstdcat\fR is equivalent to \fBzstd \-dcf\fR 20 …zstd\fR is a fast lossless compression algorithm and data compression tool, with command line synt… 23 \fBzstd\fR command line syntax is generally similar to gzip, but features the following few differe… 26 …served by default\. It\'s possible to remove them automatically by using the \fB\-\-rm\fR command\. 29 When compressing a single file, \fBzstd\fR displays progress notifications and result summary by de… [all …]
|
| D | zstd.1.md | 1 zstd(1) -- zstd, zstdmt, unzstd, zstdcat - Compress or decompress .zst files 5 -------- 7 `zstd` [<OPTIONS>] [-|<INPUT-FILE>] [-o <OUTPUT-FILE>] 9 `zstdmt` is equivalent to `zstd -T0` 11 `unzstd` is equivalent to `zstd -d` 13 `zstdcat` is equivalent to `zstd -dcf` 17 ----------- 18 `zstd` is a fast lossless compression algorithm and data compression tool, 21 `zstd` offers highly configurable compression speed, 27 `zstd` command line syntax is generally similar to gzip, [all …]
|
| /external/zstd/build/ |
| D | README.md | 6 The following projects are included with the zstd distribution: 7 - `cmake` - CMake project contributed by Artyom Dymchenko 8 - `VS2005` - Visual Studio 2005 Project (this project has been moved to the contrib directory and w… 9 - `VS2008` - Visual Studio 2008 project 10 - `VS2010` - Visual Studio 2010 project (which also works well with Visual Studio 2012, 2013, 2015) 11 - `VS_scripts` - command line scripts prepared for Visual Studio compilation without IDE 14 #### How to compile zstd with Visual Studio 17 2. Download the latest version of zstd from https://github.com/facebook/zstd/releases 19 4. Go to decompressed directory then to `projects` then `VS2010` and open `zstd.sln` 21 6. Change `Debug` to `Release` and if you have 64-bit Windows change also `Win32` to `x64`. [all …]
|
| /external/zstd/tests/cli-tests/basic/ |
| D | memlimit.sh | 5 println "+ zstd --memory=32LB file" 6 zstd --memory=32LB file && die "Should not allow bogus suffix" 7 println "+ zstd --memory=32LiB file" 8 zstd --memory=32LiB file && die "Should not allow bogus suffix" 9 println "+ zstd --memory=32A file" 10 zstd --memory=32A file && die "Should not allow bogus suffix" 11 println "+ zstd --memory=32r82347dn83 file" 12 zstd --memory=32r82347dn83 file && die "Should not allow bogus suffix" 13 println "+ zstd --memory=32asbdf file" 14 zstd --memory=32asbdf file && die "Should not allow bogus suffix" [all …]
|
| /external/zstd/tests/ |
| D | playTests.sh | 3 set -e # exit immediately on error 4 # set -x # print commands before execution (debug) 19 zstd() { function 20 if [ -z "$EXE_PREFIX" ]; then 28 if [ -z "$EXE_PREFIX" ]; then 36 if [ -n "$3" ]; then 43 if [ -n "$4" ]; then 49 rm -f tmp1 tmp2 50 println "roundTripTest: datagen $1 $proba | zstd -v$cLevel | zstd -d$dLevel" 52 datagen $1 $proba | zstd --ultra -v$cLevel | zstd -d$dLevel | $MD5SUM > tmp2 [all …]
|
| D | README.md | 5 - `datagen` : Synthetic and parametrable data generator, for tests 6 - `fullbench` : Precisely measure speed for each zstd inner functions 7 - `fuzzer` : Test tool, to check zstd integrity on target platform 8 - `paramgrill` : parameter tester for zstd 9 - `test-zstd-speed.py` : script for testing zstd speed difference between commits 10 - `test-zstd-versions.py` : compatibility test between zstd versions stored on Github (v0.1+) 11 - `zstreamtest` : Fuzzer test tool for zstd streaming API 12 - `legacy` : Test tool to test decoding of legacy zstd frames 13 - `decodecorpus` : Tool to generate valid Zstandard frames, for verifying decoder implementations 16 #### `test-zstd-versions.py` - script for testing zstd interoperability between versions [all …]
|
| D | Makefile | 6 # This source code is licensed under both the BSD-style license (found in the 9 # You may select, at your option, one of the above-listed licenses. 12 # fullbench : Precisely measure speed for each zstd inner functions 13 # fullbench32: Same as fullbench, but forced to compile in 32-bits mode 14 # fuzzer : Test tool, to check zstd integrity on target platform 15 # fuzzer32: Same as fuzzer, but forced to compile in 32-bits mode 16 # paramgrill : parameter tester for zstd 17 # test-zstd-speed.py : script for testing zstd speed difference between commits 18 # versionsTest : compatibility test between zstd versions stored on Github (v0.1+) 19 # zstreamtest : Fuzzer test tool for zstd streaming API [all …]
|
| /external/zstd/tests/cli-tests/decompression/ |
| D | pass-through.sh | 3 set -e 15 zstd file 18 zstd -dc --pass-through 1 2 3 4 29 # Test --pass-through 30 zstd -dc --pass-through file 31 zstd -d --pass-through file -o pass-through-file 33 # Test legacy implicit passthrough with -fc 34 zstd -dcf file 35 zstd -dcf file file.zst 36 zstd -df < file [all …]
|
| /external/zstd/build/single_file_libs/ |
| D | README.md | 3 …es an _amalgamated_ source file that can be used with or without `zstd.h`. This isn't a _header-on… 5 All it now takes to support Zstd in your own projects is the addition of a single file, two if usin… 8 ------------ 10 …n compiled WebAssembly project. Native implementations add a little more, 40-70kB depending on the… 12 Create `zstddeclib.c` from the Zstd source using: 14 cd zstd/build/single_file_libs 15 python3 combine.py -r ../../lib -x legacy/zstd_legacy.h -o zstddeclib.c zstddeclib-in.c 22 ------------ 24 …Zstd library for ease of adding both compression and decompression to a project. The [roundtrip ex… 26 Create `zstd.c` from the Zstd source using: [all …]
|
| D | zstd-in.c | 2 * \file zstd.c 3 * Single-file Zstandard library. 7 * python combine.py -r ../../lib -x legacy/zstd_legacy.h -o zstd.c zstd-in.c 14 * This source code is licensed under both the BSD-style license (found in the 17 * You may select, at your option, one of the above-listed licenses. 22 * Note: It's important that none of these affects 'zstd.h' (only the 28 * Note: the undefs for xxHash allow Zstd's implementation to coincide with 32 * re-running without the "-x legacy/zstd_legacy.h" option (it excludes the
|
| /external/zstd/lib/dll/example/ |
| D | README.md | 1 # ZSTD Windows binary package 5 - `zstd.exe` : Command Line Utility, supporting gzip-like arguments 6 - `dll\libzstd.dll` : The ZSTD dynamic library (DLL) 7 - `dll\libzstd.lib` : The import library of the ZSTD dynamic library (DLL) for Visual C++ 8 - `example\` : The example of usage of the ZSTD library 9 - `include\` : Header files required by the ZSTD library 10 - `static\libzstd_static.lib` : The static ZSTD library (LIB) 14 Command Line Interface (CLI) supports gzip-like arguments. 17 Usage: zstd [arg] [input] [output] 19 The full list of commands for CLI can be obtained with `-h` or `-H`. The ratio can [all …]
|
| /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/zstandard/ |
| D | ZstdCompressorOutputStream.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 24 import com.github.luben.zstd.ZstdOutputStream; 29 * Library relies on <a href="https://github.com/luben/zstd-jni/">Zstandard JNI</a> 38 * Wraps the given stream into a zstd-jni ZstdOutputStream. 40 * @param level value for zstd-jni's level argument 41 * @param closeFrameOnFlush value for zstd-jni's closeFrameOnFlush argument 42 * @param useChecksum value for zstd-jni's useChecksum argument 43 * @throws IOException if zstd-jni does 52 …* Wraps the given stream into a zstd-jni ZstdOutputStream using the default value for {@code useCh… [all …]
|
| /external/squashfs-tools/squashfs-tools/ |
| D | zstd_wrapper.c | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * Support for ZSTD compression http://zstd.net 23 #include <zstd.h> 34 * to parse any -X compressor option. 38 * -1 if the option was unrecognised, or 39 * -2 if the option was recognised, but otherwise bad in 49 if (strcmp(argv[0], "-Xcompression-level") == 0) { in zstd_options() 51 fprintf(stderr, "zstd: -Xcompression-level missing " in zstd_options() 53 fprintf(stderr, "zstd: -Xcompression-level it should " in zstd_options() 61 fprintf(stderr, "zstd: -Xcompression-level invalid, it " in zstd_options() [all …]
|
| /external/elfutils/tests/ |
| D | run-compress-test.sh | 11 # WITHOUT ANY WARRANTY; without even the implied warranty of 18 . $srcdir/test-subr.sh 20 # uncompress -> gnucompress -> uncompress -> elfcompress -> uncompress 27 echo "uncompress $infile -> $uncompressedfile" 28 testrun ${abs_top_builddir}/src/elfcompress -v -t none -o ${uncompressedfile} ${infile} 29 testrun ${abs_top_builddir}/src/elflint --gnu-ld ${uncompressedfile} 31 SIZE_uncompressed=$(stat -c%s $uncompressedfile) 35 echo "compress gnu $uncompressedfile -> $gnucompressedfile" 36 … testrun ${abs_top_builddir}/src/elfcompress -v -t gnu -o ${gnucompressedfile} ${uncompressedfile} 37 testrun ${abs_top_builddir}/src/elflint --gnu-ld ${gnucompressedfile} [all …]
|
| /external/zstd/build/meson/tests/ |
| D | valgrindTest.py | 3 # Copyright (c) 2018-present lzutao <taolzu(at)gmail.com> 6 # This source code is licensed under both the BSD-style license (found in the 15 def valgrindTest(valgrind, datagen, fuzzer, zstd, fullbench): argument 16 VALGRIND_ARGS = [valgrind, '--leak-check=full', '--show-leak-kinds=all', '--error-exitcode=1'] 18 print('\n ---- valgrind tests : memory analyzer ----') 20 subprocess.check_call([*VALGRIND_ARGS, datagen, '-g50M'], stdout=subprocess.DEVNULL) 22 if subprocess.call([*VALGRIND_ARGS, zstd], 24 raise subprocess.SubprocessError('zstd without argument should have failed') 26 with subprocess.Popen([datagen, '-g80'], stdout=subprocess.PIPE) as p1, \ 27 subprocess.Popen([*VALGRIND_ARGS, zstd, '-', '-c'], [all …]
|
| /external/zstd/ |
| D | README.md | 1 <p align="center"><img src="https://raw.githubusercontent.com/facebook/zstd/dev/doc/images/zstd_log… 3 __Zstandard__, or `zstd` as short version, is a fast lossless compression algorithm, 4 targeting real-time compression scenarios at zlib-level and better compression ratios. 8 This repository represents the reference implementation, provided as an open-source dual [BSD](LICE… 11 …and bindings is provided on [Zstandard homepage](https://facebook.github.io/zstd/#other-languages). 20 [travisDevBadge]: https://api.travis-ci.com/facebook/zstd.svg?branch=dev "Continuous Integration te… 21 [travisLink]: https://travis-ci.com/facebook/zstd 22 [CircleDevBadge]: https://circleci.com/gh/facebook/zstd/tree/dev.svg?style=shield "Short test suite" 23 [CircleLink]: https://circleci.com/gh/facebook/zstd 24 [CirrusDevBadge]: https://api.cirrus-ci.com/github/facebook/zstd.svg?branch=dev [all …]
|
| D | Makefile | 5 # This source code is licensed under both the BSD-style license (found in the 8 # You may select, at your option, one of the above-listed licenses. 24 # When cross-compiling from linux to windows, you might 26 # without it. 28 # Note: mingw-w64 build from linux to windows does not 30 # without manually specifying the TARGET_SYSTEM. 40 ## default: Build lib-release and zstd-release 42 default: lib-release zstd-release 50 # skip zwrapper, can't build that on alternate architectures without the proper zlib installed 53 $(Q)$(MAKE) -C $(PRGDIR) all [all …]
|
| D | CHANGELOG | 6 lib: reduce binary size with selective built-time exclusion, by @felixhandte 11 lib: fix zdict prototype mismatch in static_only mode, by @ldv-alt 12 lib: fix several bugs in magicless-format decoding, by @embg 13 cli: add common compressed file types to `--exclude-compressed`` by @daniellerozenblit 14 cli: fix mixing `-c` and `-o` commands with `--rm`, by @Cyan4973 15 cli: fix erroneous exclusion of hidden files with `--output-dir-mirror` by @felixhandte 20 …rovements by @terrelln, @sighingnow, @gjasny, @JohanMabille, @Saverio976, @gruenich, @teo-tsirpanis 22 build: fix cross-compiling for AArch64 with lld by @jcelerier 31 port: risc-v support validation in CI, by @Cyan4973 34 port: HP-UX compatibility, by @likema [all …]
|
| /external/curl/CMake/ |
| D | FindZstd.cmake | 18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 # SPDX-License-Identifier: curl 27 ---------- 29 Find the zstd library 35 System has zstd 37 The zstd include directories. 39 The libraries needed to use zstd 47 find_path(Zstd_INCLUDE_DIR zstd.h 53 find_library(Zstd_LIBRARY NAMES zstd 60 file(READ "${Zstd_INCLUDE_DIR}/zstd.h" _zstd_header) [all …]
|
| /external/rust/crates/zip/src/ |
| D | compression.rs | 9 /// contents to be read without context. 21 feature = "deflate-miniz", 22 feature = "deflate-zlib" 32 #[cfg(feature = "aes-crypto")] 35 #[cfg(feature = "zstd")] 36 Zstd, enumerator 53 feature = "deflate-miniz", 54 feature = "deflate-zlib" 59 feature = "deflate-miniz", 60 feature = "deflate-zlib" [all …]
|
| /external/zstd/lib/ |
| D | zdict.h | 5 * This source code is licensed under both the BSD-style license (found in the 8 * You may select, at your option, one of the above-listed licenses. 51 * Zstd dictionary builder 56 * ------------------------------ 58 * Zstd can use dictionaries to improve compression ratio of small data. 63 * these files. Then, zstd can use the dictionary to find repetitions that are 67 * ---------------------------- 75 * -------------------------- 77 * Simply pass the dictionary to the zstd compressor with 80 * more advanced functions that allow selecting some options, see zstd.h for [all …]
|
| /external/sandboxed-api/contrib/zstd/ |
| D | CMakeLists.txt | 7 # https://www.apache.org/licenses/LICENSE-2.0 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 26 "${CMAKE_BINARY_DIR}/sandboxed-api-build" 31 GIT_REPOSITORY https://github.com/facebook/zstd.git 82 "${libzstd_INCLUDE_DIR}/zstd.h" 86 LIBRARY_NAME Zstd 89 add_library(sapi_contrib::zstd ALIAS sapi_zstd)
|
| /external/google-breakpad/ |
| D | configure.ac | 3 # Redistribution and use in source and binary forms, with or without 15 # this software without specific prior written permission. 32 AC_INIT([breakpad],[0.1],[google-breakpad-dev@googlegroups.com]) 39 AM_INIT_AUTOMAKE(subdir-objects tar-ustar 1.13) 53 AS_HELP_STRING([--enable-m32], 54 [Compile/build with -m32] 58 CFLAGS="${CFLAGS} -m32" 59 CXXFLAGS="${CXXFLAGS} -m32" 76 AX_CHECK_COMPILE_FLAG([-Werror=unknown-warning-option],[ 77 ax_compiler_flags_test="-Werror=unknown-warning-option" [all …]
|