HomeSort by relevance Sort by last modified time
    Searched full:compressed (Results 101 - 125 of 2537) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/piex/src/
piex.h 18 // largest JPEG compressed preview image contained in a RAW file.
24 // Typically a preview image is stored as JPEG compressed, full size (or at
64 // Gets the largest JPEG compressed preview image data. On success
66 // offset to a JPEG compressed image from the beginning of the file.
  /external/squashfs-tools/squashfs-tools/
info.h 4 * Create a squashfs filesystem. This is a highly compressed read only
process_fragments.h 4 * Create a squashfs filesystem. This is a highly compressed read only
restore.h 4 * Create a squashfs filesystem. This is a highly compressed read only
unsquashfs_info.h 4 * Create a squashfs filesystem. This is a highly compressed read only
  /external/tcpdump/
slcompress.h 24 * Compressed packet format:
30 * the compressed packet. The next two octets are the TCP checksum
55 * this type of packet syncs the sender & receiver); and compressed
72 /* Bits in first octet of compressed packet */
  /external/v8/tools/testrunner/server/
compression.py 42 Sends a JSON encodable object over the specified socket (zlib-compressed).
46 compressed = zlib.compress(obj, compression_level)
47 payload = struct.pack('>i', len(compressed)) + compressed
  /prebuilts/go/darwin-x86/src/compress/flate/
reader_test.go 50 compressed := new(bytes.Buffer)
51 w, err := NewWriter(compressed, level)
62 buf1 := compressed.Bytes()
63 buf0, compressed, w = nil, nil, nil
  /prebuilts/go/linux-x86/src/compress/flate/
reader_test.go 50 compressed := new(bytes.Buffer)
51 w, err := NewWriter(compressed, level)
62 buf1 := compressed.Bytes()
63 buf0, compressed, w = nil, nil, nil
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
debug_str.s 5 and then assume that the section was compressed. This meant that the BFD
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/i386/
compressed-1b.d 2 #source: compressed-1.s
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/x86-64/
compressed-1b.d 2 #source: compressed-1.s
  /external/bzip2/
bzgrep.1 5 bzgrep, bzfgrep, bzegrep \- search possibly bzip2 compressed files for a regular expression
25 on bzip2-compressed files. All options specified are passed directly to
  /external/clang/docs/
CMakeLists.txt 25 # If asked, configure doxygen for the creation of a Qt Compressed Help file.
28 "Filename of the Qt Compressed help file")
  /external/curl/docs/libcurl/opts/
CURLOPT_TRANSFER_ENCODING.3 33 Adds a request for compressed Transfer Encoding in the outgoing HTTP
35 HTTP response sent using a compressed Transfer-Encoding that will be
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
BlockInputStream.java 79 // Set the maximum valid compressed size. This is overriden
80 // by the value from the Compressed Size field if it is present.
84 // Decode and validate Compressed Size if the relevant flag
126 // Compressed Data must be at least one byte, so if Block Header
134 // The compressed size calculated from Unpadded Size must
135 // match the value stored in the Compressed Size field in
193 // the size of the Compressed Data field.
252 // Validate Compressed Size and Uncompressed Size if they were
  /external/opencv3/3rdparty/include/ffmpeg_/libavutil/
lzo.h 42 /// a non-specific error in the compressed bitstream
50 * @brief Decodes LZO 1x compressed data.
  /libcore/ojluni/src/main/java/java/util/zip/
DeflaterOutputStream.java 50 * Output buffer for writing compressed data.
181 * Writes a byte to the compressed output stream. This method will
193 * Writes an array of bytes to the compressed output stream. This
218 * Finishes writing compressed data to the output stream without closing
233 * Writes remaining compressed data to the output stream and closes the
248 * Writes next block of compressed data to the output stream.
259 * Flushes the compressed output stream.
262 * syncFlush} is {@code true} when this compressed output stream is
  /toolchain/binutils/binutils-2.25/gold/
compressed_output.cc 1 // compressed_output.cc -- manage compressed debug sections for gold
39 // if it successfully compressed, false if it failed for any reason
41 // true, it allocates memory for the compressed data using new, and
99 /* It is possible the section consists of several compressed
145 // Read the compression header of a compressed debug section and return
164 // Decompress a compressed debug section directly into the output file.
194 // Set the final data size of a compressed section. This is where
231 // Write out a compressed section. If we couldn't compress, we just
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
compressed-plt-1.s 15 .equ DC, 1 # Direct call from "compressed" code
16 .equ IC, 2 # Indirect call from "compressed" code
  /external/lz4/
lz4_block_format.txt 8 to anyone willing to produce LZ4-compatible compressed data blocks
25 -- Compressed block format --
27 An LZ4 compressed block is composed of sequences.
37 (Note : a literal is a not-compressed byte).
89 On decoding the matchlength, we reach the end of the compressed sequence,
99 Consequently, a block with less than 13 bytes cannot be compressed.
  /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 */
  /prebuilts/go/darwin-x86/src/compress/lzw/
reader_test.go 20 compressed string
97 rc := NewReader(strings.NewReader(tt.compressed), order, litWidth)
131 compressed := new(bytes.Buffer)
132 w := NewWriter(compressed, LSB, 8)
140 buf1 := compressed.Bytes()
141 buf0, compressed, w = nil, nil, nil
  /prebuilts/go/linux-x86/src/compress/lzw/
reader_test.go 20 compressed string
97 rc := NewReader(strings.NewReader(tt.compressed), order, litWidth)
131 compressed := new(bytes.Buffer)
132 w := NewWriter(compressed, LSB, 8)
140 buf1 := compressed.Bytes()
141 buf0, compressed, w = nil, nil, nil

Completed in 883 milliseconds

1 2 3 45 6 7 8 91011>>