Home
last modified time | relevance | path

Searched full:zstandard (Results 1 – 25 of 74) sorted by relevance

123

/external/zstd/doc/
DREADME.md1 Zstandard Documentation
4 This directory contains material defining the Zstandard format,
11 __`zstd_compression_format.md`__ : This document defines the Zstandard compression format.
15 Should you look for resources to develop your own port of Zstandard algorithm,
18 __`educational_decoder`__ : This directory contains an implementation of a Zstandard decoder,
19 compliant with the Zstandard compression format.
21 or as the basis for a separate implementation of Zstandard decoder.
23 …github.com/facebook/zstd/tree/dev/tests#decodecorpus---tool-to-generate-zstandard-frames-for-decod…
Dzstd_compression_format.md1 Zstandard Compression Format
29 using the [Zstandard algorithm](http://www.zstandard.org).
37 The format uses the Zstandard compression method,
58 to compress data into Zstandard format and/or decompress data from Zstandard format.
59 The Zstandard format is supported by an open source reference implementation,
69 Content compressed by Zstandard is transformed into a Zstandard __frame__.
84 - [Zstandard frames](#zstandard-frames)
97 Zstandard compressed data is made of one or more __frames__.
102 There are two frame formats defined by Zstandard:
103 Zstandard frames and Skippable frames.
[all …]
/external/zstd/contrib/pzstd/
DREADME.md1 # Parallel Zstandard (PZstandard)
3 Parallel Zstandard is a Pigz-like tool for Zstandard.
4 It provides Zstandard format compatible compression and decompression that is able to utilize multi…
5 …he input up into equal sized chunks and compresses each chunk independently into a Zstandard frame.
7 Pzstandard will write a 12 byte header for each frame that is a skippable frame in the Zstandard fo…
9 When decompressing files compressed with Zstandard, PZstandard does IO in one thread, and decompres…
13 PZstandard supports the same command line interface as Zstandard, but also provides the `-p` option…
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/zstandard/
DZstdCompressorInputStreamTest.java18 package org.apache.commons.compress.compressors.zstandard;
33 import org.apache.commons.compress.compressors.zstandard.ZstdCompressorInputStream;
47 final File input = getFile("zstandard.testdata.zst"); in testZstdDecode()
48 final File expected = getFile("zstandard.testdata"); in testZstdDecode()
94 final File input = getFile("zstandard.testdata.zst"); in shouldBeAbleToSkipAByte()
106 final File input = getFile("zstandard.testdata.zst"); in singleByteReadWorksAsExpected()
108 final File original = getFile("zstandard.testdata"); in singleByteReadWorksAsExpected()
128 final File input = getFile("zstandard.testdata.zst"); in singleByteReadConsistentlyReturnsMinusOneAtEof()
141 final File input = getFile("zstandard.testdata.zst"); in multiByteReadConsistentlyReturnsMinusOneAtEof()
/external/zstd/contrib/seekable_format/
Dzstd_seekable_compression_format.md1 # Zstandard Seekable Format
24 …e in a way that is compatible with the original Zstandard format by placing the seek table in a Zs…
34 The format consists of a number of frames (Zstandard compressed frames and skippable frames), follo…
46 This is for compatibility with [Zstandard skippable frames].
47 Since it is legal for other Zstandard skippable frames to use the same
54 This is for compatibility with [Zstandard skippable frames].
56 [Zstandard skippable frames]: https://github.com/facebook/zstd/blob/master/doc/zstd_compression_for…
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/zstandard/
DZstdUtils.java19 package org.apache.commons.compress.compressors.zstandard;
22 * Utility code for the Zstandard compression format.
33 * Zstandard Frame Magic Bytes.
62 * Are the classes required to support Zstandard compression available?
63 * @return true if the classes required to support Zstandard compression are available
83 * Whether to cache the result of the Zstandard for Java check.
99 * Checks if the signature matches what is expected for a Zstandard file.
DZstdCompressorInputStream.java18 package org.apache.commons.compress.compressors.zstandard;
31 * {@link CompressorInputStream} implementation to decode Zstandard encoded stream.
32 * Library relies on <a href="https://github.com/luben/zstd-jni/">Zstandard JNI</a>
DZstdCompressorOutputStream.java18 package org.apache.commons.compress.compressors.zstandard;
28 * {@link CompressorOutputStream} implementation to create Zstandard encoded stream.
29 * Library relies on <a href="https://github.com/luben/zstd-jni/">Zstandard JNI</a>
Dpackage.html22 Zstandard algorithm based
23 on <a href="https://github.com/luben/zstd-jni">Zstandard
/external/zstd/doc/educational_decoder/
DREADME.md5 according to the [Zstandard format specification].
8 follow and understand, to help understand how the Zstandard format works.
13 [Zstandard format specification]: https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_fo…
29 It generates valid Zstandard frames that can be used to verify
30 a Zstandard decoder implementation.
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/
DCompressorStreamFactory.java59 import org.apache.commons.compress.compressors.zstandard.ZstdCompressorInputStream;
60 import org.apache.commons.compress.compressors.zstandard.ZstdCompressorOutputStream;
61 import org.apache.commons.compress.compressors.zstandard.ZstdUtils;
205 * Constant (value {@value}) used to identify the Zstandard compression
210 public static final String ZSTANDARD = "zstd"; field in CompressorStreamFactory
367 return ZSTANDARD;
522 return ZSTANDARD;
553 * {@value #LZ4_BLOCK}, {@value #LZ4_FRAMED}, {@value #ZSTANDARD},
602 if (ZSTANDARD.equalsIgnoreCase(name)) {
604 … throw new CompressorException("Zstandard compression is not available." + YOU_NEED_ZSTD_JNI);
[all …]
/external/apache-commons-compress/src/test/resources/
Dzstd-tests.tar ... bla.tar.zst zstandard.testdata.zst zstandard
/external/zstd/
DREADME.md1 …ttps://raw.githubusercontent.com/facebook/zstd/dev/doc/images/zstd_logo86.png" alt="Zstandard"></p>
10 a list of known ports and bindings is provided on [Zstandard homepage](http://www.zstd.net/#other-l…
93 Training Zstandard is achieved by providing it with a few samples (one file per sample). The result…
187 Zstandard is currently deployed within Facebook. It is used continuously to compress large amounts …
188 Zstandard is considered safe for production environments.
192 Zstandard is dual-licensed under [BSD](LICENSE) and [GPLv2](COPYING).
/external/zstd/lib/
DREADME.md1 Zstandard library files
38 Zstandard's stable API is exposed within [lib/zstd.h](zstd.h).
103 Detailed options: Zstandard's code and build environment is set up by default
104 to optimize above all else for performance. In pursuit of this goal, Zstandard
105 makes significant trade-offs in code size. For example, Zstandard often has
/external/zstd/contrib/snap/
Dsnapcraft.yaml3 summary: Zstandard - Fast real-time compression algorithm
5 Zstandard, or zstd as short version, is a fast lossless compression
/external/zstd/build/VS2010/zstd/
Dzstd.rc36 VALUE "FileDescription", "Zstandard - Fast and efficient compression algorithm"
41 VALUE "ProductName", "Zstandard"
/external/zstd/build/VS2010/libzstd-dll/
Dlibzstd-dll.rc36 VALUE "FileDescription", "Zstandard - Fast and efficient compression algorithm"
41 VALUE "ProductName", "Zstandard"
/external/zstd/programs/windres/
Dzstd.rc36 VALUE "FileDescription", "Zstandard - Fast and efficient compression algorithm"
41 VALUE "ProductName", "Zstandard"
/external/zstd/contrib/match_finders/
DREADME.md8 * Zstandard for the use case of patching: the most common scenario being
31 * where this approach consistenly outperforms Zstandard even on level 19 is
Dzstd_edist.h15 * Zstandard for the use case of patching: the most common scenario being
38 * where this approach consistenly outperforms Zstandard even on level 19 is
/external/apache-commons-compress/src/site/xdoc/
Dindex.xml31 Brotli, Zstandard, DEFLATE64 and Z files.
83 Zstandard and Z formats are
91 Brotli decoder</a>. Zstandard support is provided by the BSD
/external/lz4/
DREADME.md20 This capability can be combined with the [Zstandard Dictionary Builder](https://github.com/facebook…
68 | [Zstandard] 1.4.0 -1 | 2.883 | 515 MB/s | 1380 MB/s |
75 [Zstandard]: http://www.zstd.net/
/external/zstd/zlibWrapper/
DREADME.md1 Zstandard wrapper for zlib
74 #### The measurement of performance of Zstandard wrapper for zlib
89 Zstandard compression can be improved by providing size of source data to the compressor. By defaul…
/external/zstd/tests/
DREADME.md1 Programs and scripts for automated testing of Zstandard
14 - `decodecorpus` : Tool to generate valid Zstandard frames, for verifying decoder implementations
112 #### `decodecorpus` - tool to generate Zstandard frames for decoder testing
/external/zstd/programs/
Dzstdless.15 \fBzstdless\fR \- view zstandard\-compressed files

123