/third_party/skia/third_party/externals/brotli/python/tests/ |
D | compressor_test.py | 21 self.compressor = None 38 out_file.write(self.compressor.process(in_file.read())) 39 out_file.write(self.compressor.finish()) 49 out_file.write(self.compressor.process(data)) 50 out_file.write(self.compressor.finish()) 60 out_file.write(self.compressor.process(data)) 61 out_file.write(self.compressor.flush()) 62 out_file.write(self.compressor.finish()) 72 self.compressor = brotli.Compressor(quality=1) 78 self.compressor = brotli.Compressor(quality=6) [all …]
|
/third_party/skia/third_party/externals/brotli/python/ |
D | brotli.py | 48 compressor = Compressor(mode=mode, quality=quality, lgwin=lgwin, 50 return compressor.process(string) + compressor.finish()
|
/third_party/ffmpeg/libavcodec/ |
D | hapdec.c | 68 ctx->chunks[i].compressor = bytestream2_get_byte(gbc) << 4; in hap_parse_decode_instructions() 123 || ctx->chunks[i].compressor != HAP_COMP_NONE) in hap_can_use_tex_in_place() 159 ctx->chunks[0].compressor = section_type & 0xF0; in hap_parse_frame_header() 163 if (ctx->chunks[0].compressor == HAP_COMP_NONE) { in hap_parse_frame_header() 199 if (chunk->compressor == HAP_COMP_SNAPPY) { in hap_parse_frame_header() 209 } else if (chunk->compressor == HAP_COMP_NONE) { in hap_parse_frame_header() 233 if (chunk->compressor == HAP_COMP_SNAPPY) { in decompress_chunks_thread() 243 } else if (chunk->compressor == HAP_COMP_NONE) { in decompress_chunks_thread()
|
D | hapenc.c | 128 chunk->compressor = HAP_COMP_NONE; in hap_compress_frame() 131 chunk->compressor = HAP_COMP_SNAPPY; in hap_compress_frame() 171 ctx->chunks[0].compressor | ctx->opt_tex_fmt); in hap_write_frame_header() 182 bytestream2_put_byte(&pbc, ctx->chunks[i].compressor >> 4); in hap_write_frame_header() 213 ctx->chunks[0].compressor = HAP_COMP_NONE; in hap_encode()
|
D | hap.h | 54 enum HapCompressor compressor; member
|
/third_party/gstreamer/gstreamer/docs/random/ |
D | dynpads | 30 muxer would then be: create a compressor element (JPEG). Get the 31 src pad of the compressor, Request a new pad from the element using the 32 padtemplate provided by the compressor src pad and connect the 33 compressor element to this pad.
|
/third_party/zlib/doc/ |
D | rfc1950.txt | 138 the specifications presented here; a compliant compressor must 290 bytes which are initially fed to the compressor without 294 which dictionary has been used by the compressor. 301 0 - compressor used fastest algorithm 302 1 - compressor used fast algorithm 303 2 - compressor used default algorithm 304 3 - compressor used maximum compression, slowest algorithm 345 A compliant compressor must produce streams with correct CMF, FLG 348 the compressor may use only preset dictionaries that are specified 350 preset dictionary feature, the compressor must not set the FDICT [all …]
|
D | rfc1951.txt | 122 compressor. 159 the specifications presented here; a compliant compressor must 763 A compressor may limit further the ranges of values specified in 766 32K. Similarly, a compressor may limit the size of blocks so that 780 recommended that the implementor of a compressor follow the general 791 specification per se, and a compressor need not follow it in order to 794 The compressor terminates a block when it determines that starting a 796 fills up the compressor's block buffer. 798 The compressor uses a chained hash table to find duplicated strings, 802 compressor examines the hash chain for XYZ. If the chain is empty, [all …]
|
D | rfc1952.txt | 109 compressor. 147 specifications presented here; a compliant compressor must produce 313 an optional indication, which the compressor may set by 320 this bit, since a compressor always has the option of 379 XFL = 2 - compressor used maximum compression, 381 XFL = 4 - compressor used fastest algorithm 464 A compliant compressor must produce files with correct ID1, 467 OS, 0 for all others). The compressor must set all reserved
|
/third_party/python/Doc/library/ |
D | bz2.rst | 152 Create a new compressor object. This object may be used to compress data 161 Provide data to the compressor object. Returns a chunk of compressed data 164 When you have finished providing data to the compressor, call the 173 The compressor object may not be used after this method has been called. 298 ... # Provide data to the compressor object 302 >>> # finished providing data to the compressor.
|
D | lzma.rst | 30 decompression, or while initializing the compressor/decompressor state. 135 Create a compressor object, which can be used to compress data incrementally. 206 containing any data stored in the compressor's internal buffers. 208 The compressor cannot be used after this method has been called. 373 input for the compressor in certain circumstances. It supports one option, 379 the aim of increasing the redundancy that can be exploited by the compressor.
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | LzcompCompress.java | 412 LzcompCompress compressor = new LzcompCompress(); in compress() local 413 compressor.write(dataIn); in compress() 414 return compressor.toByteArray(); in compress()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | LzcompCompress.java | 412 LzcompCompress compressor = new LzcompCompress(); in compress() local 413 compressor.write(dataIn); in compress() 414 return compressor.toByteArray(); in compress()
|
/third_party/bzip2/ |
D | bzip2.spec | 4 Summary: A high-quality data compressor 20 bzip2 is a freely available, patent free, high-quality data compressor.
|
D | README.OpenSource | 9 …zip2 is a freely available, patent free (see below), high-quality data compressor. It typically co…
|
/third_party/ffmpeg/libavfilter/ |
D | af_sidechaincompress.c | 163 static void compressor(SidechainCompressContext *s, in compressor() function 276 compressor(s, (double *)in[0]->data[0], dst, in activate() 426 compressor(s, src, dst, src, in->nb_samples, in acompressor_filter_frame()
|
/third_party/libwebsockets/lib/roles/http/compression/ |
D | README.md | 7 The compression transforms expose an "ops" type struct and a compressor name
|
/third_party/lz4/doc/ |
D | lz4_Block_format.md | 11 LZ4 is an LZ77-type compressor with a fixed byte-oriented encoding format. 18 not how the compressor nor decompressor actually work. 236 The core of a LZ4 compressor is to detect duplicated data across past 64 KB. 237 The format makes no assumption nor limits to the way a compressor
|
D | lz4_Frame_format.md | 48 a compliant compressor must produce data sets 225 The compressor can take advantage of the dictionary context 228 both the compressor and the decompressor to “warm-up” reference tables. 232 The compressor and the decompressor must use exactly the same dictionary.
|
/third_party/lz4/lib/ |
D | README.md | 76 - `LZ4_DISTANCE_MAX` : control the maximum offset that the compressor will allow. 81 This build macro only influences the compressed output of the compressor.
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/ |
D | example.txt | 53 /* This half of the example shows how to feed data into the JPEG compressor. 153 /* Step 4: Start compressor */ 205 * destination module that can demand suspension of the compressor. 208 * If the compressor requires full-image buffers (for entropy-coding
|
/third_party/libjpeg-turbo/ |
D | example.txt | 53 /* This half of the example shows how to feed data into the JPEG compressor. 153 /* Step 4: Start compressor */ 205 * destination module that can demand suspension of the compressor. 208 * If the compressor requires full-image buffers (for entropy-coding
|
/third_party/skia/third_party/externals/brotli/c/tools/ |
D | brotli.md | 84 `(2**NUM - 16)`; 0 lets compressor decide over the optimal value; bigger
|
/third_party/glslang/ |
D | README-spirv-remap.txt | 13 together, since compressor's dictionary can find better cross module
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0b3.rst | 75 LZMA compressor and decompressor no longer raise exceptions if given empty
|