HomeSort by relevance Sort by last modified time
    Searched full:compressor (Results 26 - 50 of 409) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
ppp-comp.h 63 struct compressor { struct
66 /* Allocate space for a compressor (transmit side) */
69 /* Free space used by a compressor */
72 /* Initialize a compressor */
76 /* Reset a compressor */
110 /* Used in locking compressor modules */
112 /* Extra skb space needed by the compressor algorithm */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
ppp-comp.h 63 struct compressor { struct
66 /* Allocate space for a compressor (transmit side) */
69 /* Free space used by a compressor */
72 /* Initialize a compressor */
76 /* Reset a compressor */
110 /* Used in locking compressor modules */
112 /* Extra skb space needed by the compressor algorithm */
  /external/squashfs-tools/RELEASE-READMEs/
README-4.3 22 2. GZIP compressor now supports compression options, allowing different
25 3. Rewritten LZO compressor with compression options, allowing different
28 4. New LZ4 compressor (note not yet in mainline kernel)
96 The compression specific options are, obviously, specific to the compressor
97 in question, and you should read the compressor documentation and check
100 In general the defaults used by Mksquashfs for each compressor are optimised
101 to give the best performance for each compressor, where what constitutes
102 best depends on the compressor. For gzip/xz best means highest compression
146 Display the usage text for the currently selected compressor.
  /prebuilts/go/darwin-x86/src/compress/gzip/
gzip.go 32 compressor *flate.Writer
78 compressor := z.compressor
79 if compressor != nil {
80 compressor.Reset(w)
89 compressor: compressor,
213 if z.compressor == nil {
214 z.compressor, _ = flate.NewWriter(z.w, z.level)
219 n, z.err = z.compressor.Write(p
    [all...]
  /prebuilts/go/linux-x86/src/compress/gzip/
gzip.go 32 compressor *flate.Writer
78 compressor := z.compressor
79 if compressor != nil {
80 compressor.Reset(w)
89 compressor: compressor,
213 if z.compressor == nil {
214 z.compressor, _ = flate.NewWriter(z.w, z.level)
219 n, z.err = z.compressor.Write(p
    [all...]
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
PartiallyUncompressingPipeTest.java 63 // Make a compressor with nowrap set to *false* (unusual) and pump the uncompressed entry
65 DeflateCompressor compressor = new DeflateCompressor(); local
66 compressor.setNowrap(false);
68 compressor.compress(
UnitTestZipEntry.java 103 DeflateCompressor compressor = new DeflateCompressor(); local
104 compressor.setCompressionLevel(level);
105 compressor.setNowrap(nowrap);
107 compressor.compress(new ByteArrayInputStream(getUncompressedBinaryContent()), buffer);
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/bench/
LICENSE.cssmin 1 `cssmin.py` - A Python port of the YUI CSS compressor.
28 This software contains portions of the YUI CSS Compressor, notably some regular
29 expressions for reducing the size of CSS. The YUI Compressor source code can be
32 > YUI Compressor Copyright License Agreement (BSD License)
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfMisc.cpp 166 Compressor::Format
167 defaultFormat (Compressor * compressor)
169 return compressor? compressor->format(): Compressor::XDR;
174 numLinesInBuffer (Compressor * compressor)
176 return compressor? compressor->numScanLines(): 1
    [all...]
  /external/squashfs-tools/squashfs-tools/
lzma_wrapper.c 28 #include "compressor.h"
52 * All other errors return failure, with the compressor
76 * compressor does not include the LZMA header space
111 struct compressor lzma_comp_ops = {
lzma_xz_wrapper.c 29 #include "compressor.h"
91 * All other errors return failure, with the compressor
153 struct compressor lzma_comp_ops = {
  /external/zlib/src/contrib/ada/
buffer_demo.adb 46 Compressor : Filter_Type;
49 Deflate_Init (Compressor);
53 Translate (Compressor, Source, I, Compressed_Data, L, Finish);
56 Close (Compressor);
  /system/extras/squashfs_utils/
mksquashfsimage.sh 8 ${0##*/} SRC_DIR OUTPUT_FILE [-s] [-m MOUNT_POINT] [-d PRODUCT_OUT] [-C FS_CONFIG ] [-c FILE_CONTEXTS] [-B BLOCK_MAP_FILE] [-b BLOCK_SIZE] [-z COMPRESSOR] [-zo COMPRESSOR_OPT] [-t COMPRESS_THRESHOLD] [-a]
69 COMPRESSOR="lz4"
72 COMPRESSOR=$2
121 MAKE_SQUASHFS_CMD="mksquashfs $SRC_DIR/ $OUTPUT_FILE -no-progress -comp $COMPRESSOR $COMPRESSOR_OPT -no-exports -noappend -no-recovery -no-fragments -no-duplicates -android-fs-config $OPT"
  /system/update_engine/payload_generator/
xz_chromeos.cc 24 // No Xz compressor implementation in Chrome OS delta_generator builds.
  /prebuilts/go/darwin-x86/src/compress/zlib/
writer.go 30 compressor *flate.Writer
79 if z.compressor != nil {
80 z.compressor.Reset(w)
131 if z.compressor == nil {
134 z.compressor, err = flate.NewWriterDict(z.w, z.level, z.dict)
156 n, err = z.compressor.Write(p)
173 z.err = z.compressor.Flush()
186 z.err = z.compressor.Close()
  /prebuilts/go/linux-x86/src/compress/zlib/
writer.go 30 compressor *flate.Writer
79 if z.compressor != nil {
80 z.compressor.Reset(w)
131 if z.compressor == nil {
134 z.compressor, err = flate.NewWriterDict(z.w, z.level, z.dict)
156 n, err = z.compressor.Write(p)
173 z.err = z.compressor.Flush()
186 z.err = z.compressor.Close()
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
JreDeflateParameters.java 81 * The level of the deflate compressor.
86 * The strategy used by the deflate compressor.
91 * Whether or not nowrap is enabled for the deflate compressor.
97 * @param level the level for the deflate compressor
98 * @param strategy the strategy for the deflate compressor
99 * @param nowrap whether or not nowrap is enabled for the deflate compressor
  /prebuilts/go/darwin-x86/src/compress/flate/
deflate.go 23 minMatchLength = 3 // The smallest match that the compressor looks for
24 maxMatchLength = 258 // The longest match for the compressor
60 type compressor struct {
66 fill func(*compressor, []byte) int // copy data to window
67 step func(*compressor) // process window
98 func (d *compressor) fillDeflate(b []byte) int {
135 func (d *compressor) writeBlock(tokens []token, index int, eof bool) error {
150 func (d *compressor) findMatch(pos int, prevHead int, prevLength int, lookahead int) (length, offset int, ok bool) {
206 func (d *compressor) writeStoredBlock(buf []byte) error {
214 func (d *compressor) initDeflate()
    [all...]
  /prebuilts/go/linux-x86/src/compress/flate/
deflate.go 23 minMatchLength = 3 // The smallest match that the compressor looks for
24 maxMatchLength = 258 // The longest match for the compressor
60 type compressor struct {
66 fill func(*compressor, []byte) int // copy data to window
67 step func(*compressor) // process window
98 func (d *compressor) fillDeflate(b []byte) int {
135 func (d *compressor) writeBlock(tokens []token, index int, eof bool) error {
150 func (d *compressor) findMatch(pos int, prevHead int, prevLength int, lookahead int) (length, offset int, ok bool) {
206 func (d *compressor) writeStoredBlock(buf []byte) error {
214 func (d *compressor) initDeflate()
    [all...]
  /external/libopus/silk/
main.h 84 ec_enc *psRangeEnc, /* I/O Compressor data structure */
90 ec_enc *psRangeEnc, /* I/O Compressor data structure */
96 ec_dec *psRangeDec, /* I/O Compressor data structure */
102 ec_dec *psRangeDec, /* I/O Compressor data structure */
108 ec_enc *psRangeEnc, /* I/O Compressor data structure */
118 ec_dec *psRangeDec, /* I/O Compressor data structure */
149 ec_enc *psRangeEnc, /* I/O compressor data structure */
158 ec_enc *psRangeEnc, /* I/O compressor data structure */
165 ec_dec *psRangeDec, /* I/O Compressor data structure */
372 ec_dec *psRangeDec, /* I/O Compressor data structure *
    [all...]
stereo_decode_pred.c 36 ec_dec *psRangeDec, /* I/O Compressor data structure */
67 ec_dec *psRangeDec, /* I/O Compressor data structure */
stereo_encode_pred.c 36 ec_enc *psRangeEnc, /* I/O Compressor data structure */
56 ec_enc *psRangeEnc, /* I/O Compressor data structure */
  /external/lz4/
lz4_block_format.txt 11 LZ4 is an LZ77-type compressor with a fixed, byte-oriented encoding.
19 not how the LZ4 compressor nor decompressor actually work.
21 on implementation details of the compressor, and vice versa.
109 There is no assumption nor limits to the way the compressor
118 Whatever the method used by the compressor, its result will be decodable
  /external/ppp/pppd/include/net/
ppp-comp.h 58 struct compressor { struct
61 /* Allocate space for a compressor (transmit side) */
63 /* Free space used by a compressor */
65 /* Initialize a compressor */
68 /* Reset a compressor */
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Compress.java 38 static public class Compressor extends Dicttool.Command {
41 public Compressor() {

Completed in 2039 milliseconds

12 3 4 5 6 7 8 91011>>