/external/squashfs-tools/squashfs-tools/ |
compressor.c | 20 * compressor.c 25 #include "compressor.h" 29 static struct compressor gzip_comp_ops = { 33 extern struct compressor gzip_comp_ops; 37 static struct compressor lzma_comp_ops = { 41 extern struct compressor lzma_comp_ops; 45 static struct compressor lzo_comp_ops = { 49 extern struct compressor lzo_comp_ops; 53 static struct compressor lz4_comp_ops = { 57 extern struct compressor lz4_comp_ops 74 struct compressor *compressor[] = { variable in typeref:struct:compressor [all...] |
compressor.h | 22 * compressor.h 25 struct compressor { struct 41 extern struct compressor *lookup_compressor(char *); 42 extern struct compressor *lookup_compressor_id(int); 46 static inline int compressor_init(struct compressor *comp, void **stream, 55 static inline int compressor_compress(struct compressor *comp, void *strm, 62 static inline int compressor_uncompress(struct compressor *comp, void *dest, 73 static inline int compressor_options(struct compressor *comp, char *argv[], 83 static inline int compressor_options_post(struct compressor *comp, int block_size) 91 static inline void *compressor_dump_options(struct compressor *comp [all...] |
lz4_wrapper.c | 32 #include "compressor.h" 38 * to parse any -X compressor option. 46 * Note: this function sets internal compressor state, but does not 64 * compressor options in a format suitable for writing to the 65 * compressor options field in the filesystem (stored immediately 92 * mksquashfs. Its purpose is to set the internal compressor state 93 * to the stored compressor options in the passed compressor options 96 * In effect this function sets up the compressor options 98 * generated, this is to ensure on appending, the compressor use [all...] |
lzo_wrapper.c | 32 #include "compressor.h" 53 * to parse any -X compressor option. 61 * Note: this function sets internal compressor state, but does not 120 * It is used to do post-processing on the compressor options using 156 * compressor options in a format suitable for writing to the 157 * compressor options field in the filesystem (stored immediately 192 * mksquashfs. Its purpose is to set the internal compressor state 193 * to the stored compressor options in the passed compressor options 196 * In effect this function sets up the compressor option [all...] |
Makefile | 113 MKSQUASHFS_OBJS = mksquashfs.o read_fs.o action.o swap.o pseudo.o compressor.o \ 118 unsquash-4.o swap.o compressor.o unsquashfs_info.o 209 # At least one compressor must have been selected 212 $(error "No compressor selected! Select one or more of GZIP, LZMA, XZ, LZO or \ 217 # COMP_DEFAULT must be a selected compressor 231 sort.h pseudo.h compressor.h xattr.h action.h error.h progressbar.h \ 234 read_fs.o: read_fs.c squashfs_fs.h squashfs_swap.h compressor.h xattr.h \ 243 compressor.o: Makefile compressor.c compressor.h squashfs_fs. [all...] |
xz_wrapper.c | 32 #include "compressor.h" 51 * to parse any -X compressor option. 63 * Note: this function sets internal compressor state, but does not 155 * It is used to do post-processing on the compressor options using 218 * compressor options in a format suitable for writing to the 219 * compressor options field in the filesystem (stored immediately 232 * don't store compressor specific options in file system if the 233 * default options are being used - no compressor options in the 259 * mksquashfs. Its purpose is to set the internal compressor state 260 * to the stored compressor options in the passed compressor option [all...] |
gzip_wrapper.c | 31 #include "compressor.h" 52 * to parse any -X compressor option. 60 * Note: this function sets internal compressor state, but does not 144 * It is used to do post-processing on the compressor options using 163 * compressor options in a format suitable for writing to the 164 * compressor options field in the filesystem (stored immediately 206 * mksquashfs. Its purpose is to set the internal compressor state 207 * to the stored compressor options in the passed compressor options 210 * In effect this function sets up the compressor option [all...] |
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/ |
DeflateCompressorTest.java | 51 private DeflateCompressor compressor; field in class:DeflateCompressorTest 79 compressor = new DeflateCompressor(); 86 compressor.compress(rawContentIn, compressedContentOut); 90 uncompressWithJavaInflater(compressor.isNowrap(), compressedContentOut.toByteArray()); 98 // changed in the compressor without also changing it in the *un*compressor. 99 Assert.assertTrue(compressor.isNowrap()); 100 Assert.assertEquals(Deflater.DEFAULT_COMPRESSION, compressor.getCompressionLevel()); 101 Assert.assertEquals(Deflater.DEFAULT_STRATEGY, compressor.getStrategy()); 107 Assert.assertTrue(compressor.isNowrap()) [all...] |
/frameworks/av/media/libeffects/lvm/lib/Common/lib/ |
CompLim.h | 41 typedef struct /* Compressor state */ 50 /* Compressor */ 51 LVM_INT16 Comp_Atten; /* Attenuation applied before soft knee compressor */ 57 LVM_INT32 CompIntSlow; /* Compressor slow integrator current value */ 58 LVM_INT32 CompIntFast; /* Compressor fast integrator current value */
|
/prebuilts/go/darwin-x86/src/archive/zip/ |
register.go | 15 // A Compressor returns a compressing writer, writing to the 17 type Compressor func(io.Writer) (io.WriteCloser, error) 64 mu sync.RWMutex // guards compressor and decompressor maps 66 compressors = map[uint16]Compressor{ 90 func RegisterCompressor(method uint16, comp Compressor) { 95 panic("compressor already registered") 100 func compressor(method uint16) Compressor {
|
/prebuilts/go/linux-x86/src/archive/zip/ |
register.go | 15 // A Compressor returns a compressing writer, writing to the 17 type Compressor func(io.Writer) (io.WriteCloser, error) 64 mu sync.RWMutex // guards compressor and decompressor maps 66 compressors = map[uint16]Compressor{ 90 func RegisterCompressor(method uint16, comp Compressor) { 95 panic("compressor already registered") 100 func compressor(method uint16) Compressor {
|
/external/caliper/examples/src/main/java/examples/ |
CompressionSizeBenchmark.java | 69 Deflater compressor = new Deflater(); local 70 compressor.setLevel(compressionLevelMap.get(compressionLevel)); 71 compressor.setInput(bytes); 72 compressor.finish(); 75 while (!compressor.finished()) { 76 int count = compressor.deflate(buf);
|
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/ |
httpzlib.py | 46 compressor = zlib.compressobj( 49 compressor = zlib.compressobj() 59 chunk += compressor.compress(data) 61 chunk += compressor.flush(zlib.Z_SYNC_FLUSH) 63 chunk += (compressor.flush(zlib.Z_FULL_FLUSH) + 64 compressor.flush())
|
/external/chromium-trace/catapult/third_party/flot/ |
Makefile | 9 yui-compressor $< -o $@
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/tests/yui/ |
concat-charset.css | 10 The compressor should not get involved.
|
/libcore/ojluni/src/main/java/java/util/zip/ |
DeflaterOutputStream.java | 45 * Compressor for this stream. 63 * Creates a new output stream with the specified compressor, 67 * @param def the compressor ("deflater") 71 * instance flushes the compressor with flush mode 96 * Creates a new output stream with the specified compressor and 103 * @param def the compressor ("deflater") 112 * Creates a new output stream with the specified compressor, flush 116 * @param def the compressor ("deflater") 119 * instance flushes the compressor with flush mode 133 * Creates a new output stream with the specified compressor an [all...] |
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/ |
Compressor.java | 22 * An interface for implementing a streaming compressor. A compressor may be used to compress 25 public interface Compressor {
|
Uncompressor.java | 23 * data that was previously compressed by the corresponding {@link Compressor} implementation, and 28 * Uncompresses data that was previously processed by the corresponding {@link Compressor}
|
/external/squashfs-tools/RELEASE-READMEs/ |
README-4.2 | 14 2. Support for compressor specific options 33 -X<compressor-option> 36 options are prefixed by -X, and are passed to the compressor for handling. 38 The compression specific options supported by each compressor can be 42 Compressors available and compressor specific options:
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfCompressor.cpp | 39 // class Compressor 56 Compressor::Compressor (const Header &hdr): _header (hdr) {} 59 Compressor::~Compressor () {} 62 Compressor::Format 63 Compressor::format () const 70 Compressor::compressTile (const char *inPtr, 80 Compressor::uncompressTile (const char *inPtr, 112 Compressor * [all...] |
ImfMisc.h | 108 // Return a compressor's data format (Compressor::NATIVE or Compressor::XDR). 109 // If compressor is 0, return Compressor::XDR. 112 Compressor::Format defaultFormat (Compressor *compressor); 116 // Return the number of scan lines a compressor wants to compress 117 // or uncompress at once. If compressor is 0, return 1 [all...] |
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/ |
README.chromium | 11 The minifier is based on the semantics of the YUI compressor, which itself is
|
/external/aac/libAACenc/src/ |
metadata_compressor.h | 87 Description: Compressor for AAC Metadata Generator 117 * DRC Compressor handle. 122 * \brief Open a DRC Compressor instance. 124 * Allocate memory for a compressor instance. 126 * \param phDrcComp A pointer to a compressor handle. Initialized on return. 138 * \brief Close the DRC Compressor instance. 142 * \param phDrcComp Pointer to the compressor handle to be deallocated. 153 * \brief Configure DRC Compressor. 155 * \param drcComp Compressor handle. 180 * \brief Calculate DRC Compressor Gain [all...] |
/frameworks/av/media/libeffects/loudness/dsp/core/ |
dynamic_range_compression.h | 37 // Initializes the compressor using prior information. It assumes that the 39 // fed to the compressor. The compressor is tuned according to the target gain 58 // Stereo channel version of the compressor 84 // compressor is actually starting to compress the value of the input samples
|
/device/google/dragon/audio/hal/dsp/ |
drc.h | 27 * This is a three band stereo DRC. There are three compressor kernels, and each 61 /* The parameters of the DRC compressor. 68 * PARAM_PRE_DELAY - The lookahead time for the compressor, in seconds. 78 * PARAM_ENABLED - 1 to enable the compressor, 0 to disable it. 100 /* The number of compressor kernels (also the number of bands). */ 116 /* parameters holds the tweakable compressor parameters. */ 126 /* The compressor kernels */
|