HomeSort by relevance Sort by last modified time
    Searched full:compressed (Results 226 - 250 of 3586) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bsdiff/
patch_reader.cc 26 // 32 X compressed control block
27 // 32+X Y compressed diff block
28 // 32+X+Y ??? compressed extra block
46 // 5 1 compressed type for control stream
47 // 6 1 compressed type for diff stream
48 // 7 1 compressed type for extra stream
  /external/ppp/pppd/include/net/
ppp_defs.h 87 #define PPP_VJC_COMP 0x2d /* VJ compressed TCP */
90 #define PPP_COMP 0xfd /* compressed packet */
163 unsigned int vjs_compressed; /* outbound compressed packets */
167 unsigned int vjs_compressedin; /* inbound compressed packets */
180 unsigned int comp_bytes; /* compressed bytes */
181 unsigned int comp_packets; /* compressed packets */
slcompress.h 32 * Compressed packet format:
38 * the compressed packet. The next two octets are the TCP checksum
63 * this type of packet syncs the sender & receiver); and compressed
80 /* Bits in first octet of compressed packet */
126 int sls_compressed; /* outbound compressed packets */
130 int sls_compressedin; /* inbound compressed packets */
  /external/syslinux/core/lwip/src/netif/ppp/
vj.h 35 * Compressed packet format:
41 * the compressed packet. The next two octets are the TCP checksum
66 * this type of packet syncs the sender & receiver); and compressed
83 /* Bits in first octet of compressed packet */
121 unsigned long vjs_compressed; /* outbound compressed packets */
125 unsigned long vjs_compressedin; /* inbound compressed packets */
  /external/tensorflow/tensorflow/core/lib/io/snappy/
snappy_outputbuffer.h 34 // `Write`), the contents of the buffer are compressed and sent to the output
37 // The compressed output is buffered in a buffer of size `output_buffer_bytes`
41 // The output file consists of a sequence of compressed blocks. Each block
43 // _compressed_ block _excluding_ this header. The compressed
58 // The input data is buffered in `input_buffer_` and is compressed in bulk
59 // when the buffer gets full. The compressed output may not be immediately
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
compress.exp 17 # Test compressed .debug section.
24 set compressedfile tmpdir/dw2-1-compressed
26 set compressedfile2 tmpdir/dw2-2-compressed
28 set compressedcopyfile tmpdir/dw2-copy-compressed
30 set compressedfile3 tmpdir/dw2-3-compressed
33 unsupported "compressed debug sections"
38 unsupported "compressed debug sections"
43 unsupported "compressed debug sections with zlib-gnu"
57 unsupported "compressed debug sections"
62 unsupported "compressed debug sections
    [all...]
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
DeflateCompressorTest.java 44 * Helper class for storing the compressed and uncompressed form of something together.
47 public byte[] compressed; field in class:DeflateCompressorTest.Content
141 content[strategy].compressed = compressedContentOut.toByteArray();
143 uncompressWithJavaInflater(compressor.isNowrap(), content[strategy].compressed);
153 Arrays.equals(content[outer].compressed, content[inner].compressed));
170 content[level].compressed = compressedContentOut.toByteArray();
172 uncompressWithJavaInflater(compressor.isNowrap(), content[level].compressed);
182 Arrays.equals(content[outer].compressed, content[inner].compressed));
    [all...]
  /external/python/cpython3/Doc/library/
bz2.rst 22 writing compressed files.
36 Open a bzip2-compressed file in binary or text mode, returning a :term:`file
70 Open a bzip2-compressed file in binary mode.
74 be used to read or write the compressed data.
91 compressed streams.
152 Provide data to the compressor object. Returns a chunk of compressed data
161 Finish the compression process. Returns the compressed data left in
175 compressed streams, unlike :func:`decompress` and :class:`BZ2File`. If
215 Data found after the end of the compressed stream.
245 If *data* is the concatenation of multiple compressed streams, decompres
    [all...]
  /frameworks/base/libs/androidfw/include/androidfw/
Asset.h 105 * asset is compressed).
163 * Create the asset from a named, compressed file on disk (e.g. ".gz").
179 * Create from compressed data. "fd" should be seeked to the start of
180 * the compressed data. This could be inside a gzip file or part of a
185 * This may not verify the validity of the compressed data until first
204 * Create the asset from a memory-mapped file segment with compressed
292 * An asset based on compressed data in a file.
327 off64_t mStart; // offset to start of compressed data
328 off64_t mCompressedLen; // length of the compressed data
335 class StreamingZipInflater* mZipInflater; // for streaming large compressed asset
    [all...]
  /external/xz-embedded/linux/lib/xz/
xz_dec_stream.c 74 * Value stored in the Compressed Size field, or
75 * VLI_UNKNOWN if Compressed Size is not present.
77 vli_type compressed; member in struct:xz_dec::__anon44858
91 /* Observed compressed size of the current Block */
92 vli_type compressed; member in struct:xz_dec::__anon44859
218 * Decode the Compressed Data field from a Block. Update and validate
219 * the observed compressed and uncompressed sizes of the Block so that
243 s->block.compressed += b->in_pos - s->in_start;
250 if (s->block.compressed > s->block_header.compressed
    [all...]
xz_dec_lzma2.c 228 /* Next position after decoding the compressed size of the chunk. */
235 * Compressed size of LZMA chunk or compressed/uncompressed
238 uint32_t compressed; member in struct:lzma2_dec
852 if (s->temp.size > 0 || s->lzma2.compressed == 0) {
854 if (tmp > s->lzma2.compressed - s->temp.size)
855 tmp = s->lzma2.compressed - s->temp.size;
861 if (s->temp.size + tmp == s->lzma2.compressed) {
880 s->lzma2.compressed -= s->rc.in_pos;
898 if (in_avail >= s->lzma2.compressed + LZMA_IN_REQUIRED
    [all...]
  /external/lz4/doc/
lz4_Frame_format.md 25 The purpose of this document is to define a lossless compressed data format,
40 does not attempt to allow random access to compressed data.
56 Whenever it does not support a specific parameter within the compressed stream,
81 That?s where compressed data is stored.
104 for example in order to add new data to an existing compressed file
162 calculated by using the xxHash-32 algorithm on the raw (compressed) data block.
236 The highest bit is ?0? if data in the block is compressed by LZ4.
248 It might be compressed or not, depending on previous field indications.
315 - All blocks are always compressed, even when compression is detrimental.
332 __Block Compressed Size_
    [all...]
  /external/bzip2/
manual.xml 102 handling compressed data in the
193 replaced by a compressed version of itself, with the name
195 compressed file has the same modification date, permissions, and,
213 compressed output to a terminal, as this would be entirely
222 filename for the decompressed file from that of the compressed
263 compressed files. The result is the concatenation of the
265 (<computeroutput>-t</computeroutput>) of concatenated compressed
270 Multiple files may be compressed and decompressed like this. The
273 multiple compressed file representations. Such a stream can be
290 <para>Compression is always performed, even if the compressed
    [all...]
bzip2.1 49 command-line flags. Each file is replaced by a compressed version of
51 Each compressed file
72 write compressed output to a terminal, as this would be entirely
84 from that of the compressed file as follows:
111 concatenation of two or more compressed files. The result is the
115 compressed files is also supported.
118 giving the \-c flag. Multiple files may be compressed and
122 containing multiple compressed file representations. Such a stream
146 Compression is always performed, even if the compressed
159 original. This guards against corruption of the compressed data, an
    [all...]
  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/doc/spec/
x5665.htm 16 TITLE="Compressed Formats"
161 >Compressed format of the ET61X251 driver.</TD
223 >Compressed format used by the Zoran driver</TD
237 >Compressed format of the PWC driver.</TD
251 >Compressed format of the PWC driver.</TD
265 >Compressed format of the SN9C102 driver.</TD
349 >Compressed Formats</TD
  /external/lz4/programs/
lz4.1.md 44 `file` is compressed into `file.lz4`.
46 `lz4 file | consumer` sends compressed data to `consumer` through `stdout`,
52 which will be compressed into files using suffix `.lz4`.
102 `-z` can also be used to force compression of an already compressed
111 Test the integrity of compressed `.lz4` files.
137 that have not been compressed with `lz4`.
144 Compressed file names will be appended a `.lz4` suffix.
  /external/squashfs-tools/RELEASE-READMEs/
PERFORMANCE.README 23 Zisofs compressed size 589.81 MB
24 Cloop compressed size 471.89 MB
25 Squashfs2.0 compressed size 448.58 MB
26 Squashfs2.1 compressed size 448.58 MB
103 CRAMFS compressed size 52.19 MB
104 Squashfs2.0 compressed size 46.52 MB
105 Squashfs2.1 compressed size 46.52 MB
  /external/squashfs-tools/kernel/fs/squashfs/
block.c 2 * Squashfs - a compressed read only filesystem for Linux
89 int bytes, compressed, b = 0, k = 0, page = 0, avail; local
102 compressed = SQUASHFS_COMPRESSED_BLOCK(length);
108 index, compressed ? "" : "un", length, srclength);
134 compressed = SQUASHFS_COMPRESSED(length);
140 compressed ? "" : "un", length);
155 if (compressed) {
  /system/update_engine/payload_consumer/
xz_extent_writer_unittest.cc 39 // Compressed data with CRC-32 check, generated with:
51 // Compressed data without checksum, generated with:
89 void WriteAll(const brillo::Blob& compressed) {
91 EXPECT_TRUE(xz_writer_->Write(compressed.data(), compressed.size()));
146 brillo::Blob compressed(std::begin(kCompressed30KiBofA),
149 for (uint8_t byte : compressed) {
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
BaseUefiTianoCustomDecompressLib.c 633 Given a compressed source buffer, this function retrieves the size of
635 to decompress the compressed source buffer.
640 be determined from the compressed data specified by Source and SourceData,
653 @param Source The source buffer containing the compressed data.
656 that will be generated when the compressed buffer specified
659 is required to decompress the compressed buffer specified
668 the compressed data specified by Source
702 Decompresses a compressed source buffer by EFI or Tiano algorithm.
709 If the compressed source data specified by Source is successfully decompressed
710 into Destination, then RETURN_SUCCESS is returned. If the compressed source data
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/compression/
ExhaustiveTest.java 32 byte [] compressed = UnicodeCompressor.compress(s);
33 String res = UnicodeDecompressor.decompress(compressed);
37 + compressed.length + " bytes ===> "
40 logln("Compressed:");
41 printBytes(compressed, compressed.length);
78 logln("Compressed:");
102 byte[] compressed = new byte[compressedSize];
134 System.arraycopy(byteBuffer, 0, compressed,
137 // update the no. of characters compressed
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/compression/
ExhaustiveTest.java 29 byte [] compressed = UnicodeCompressor.compress(s);
30 String res = UnicodeDecompressor.decompress(compressed);
34 + compressed.length + " bytes ===> "
37 logln("Compressed:");
38 printBytes(compressed, compressed.length);
75 logln("Compressed:");
99 byte[] compressed = new byte[compressedSize];
131 System.arraycopy(byteBuffer, 0, compressed,
134 // update the no. of characters compressed
    [all...]
  /external/zlib/src/contrib/iostream2/
zstream.h 76 /* Flushes all pending input if necessary, closes the compressed file
85 /* Binary read the given number of bytes from the compressed file.
92 * given compressed file. errnum is set to zlib error number. If an
108 * Binary read the given (array of) object(s) from the compressed file.
194 /* Flushes all pending output if necessary, closes the compressed file
206 /* Binary write the given number of bytes into the compressed file.
212 /* Flushes all pending output into the compressed file. The parameter
225 * given compressed file. errnum is set to zlib error number. If an
259 * Binary write the given (array of) object(s) into the compressed file.
  /toolchain/binutils/binutils-2.27/zlib/contrib/iostream2/
zstream.h 76 /* Flushes all pending input if necessary, closes the compressed file
85 /* Binary read the given number of bytes from the compressed file.
92 * given compressed file. errnum is set to zlib error number. If an
108 * Binary read the given (array of) object(s) from the compressed file.
194 /* Flushes all pending output if necessary, closes the compressed file
206 /* Binary write the given number of bytes into the compressed file.
212 /* Flushes all pending output into the compressed file. The parameter
225 * given compressed file. errnum is set to zlib error number. If an
259 * Binary write the given (array of) object(s) into the compressed file.
  /external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
PartiallyCompressingOutputStreamTest.java 42 // The preamble comes before any compressed bytes in the stream
121 // Write uncompressed data followed by compressed data
134 // Write uncompressed data followed by compressed data and another bit of uncompressed data
147 // Write uncompressed data, compressed data, uncompressed data, compressed data (new params)

Completed in 3393 milliseconds

1 2 3 4 5 6 7 8 91011>>