Home
last modified time | relevance | path

Searched refs:compressed (Results 1 – 25 of 141) sorted by relevance

123456

/external/qemu/
Dtrace.c36 char compressed[kCompressedSize]; member
56 char compressed[kCompressedSize]; member
78 char compressed[kCompressedSize]; member
89 char compressed[kCompressedSize]; member
100 char compressed[kCompressedSize]; member
109 char compressed[kCompressedSize]; member
351 trace_bb.compressed_ptr = trace_bb.compressed; in create_trace_bb()
352 trace_bb.high_water_ptr = &trace_bb.compressed[kCompressedSize] - kMaxBBCompressed; in create_trace_bb()
375 trace_insn.compressed_ptr = trace_insn.compressed; in create_trace_insn()
376 trace_insn.high_water_ptr = &trace_insn.compressed[kCompressedSize] - kMaxInsnCompressed; in create_trace_insn()
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_stacktrace.cc119 uptr StackTrace::CompressStack(StackTrace *stack, u32 *compressed, uptr size) { in CompressStack() argument
124 compressed[i] = stack->trace[i]; in CompressStack()
128 compressed[stack->size] = 0; in CompressStack()
144 compressed[c_index++] = offset; in CompressStack()
151 compressed[c_index++] = hi; in CompressStack()
152 compressed[c_index++] = lo; in CompressStack()
158 compressed[c_index] = 0; in CompressStack()
160 compressed[c_index + 1] = 0; in CompressStack()
166 UncompressStack(&check_stack, compressed, size); in CompressStack()
183 u32 *compressed, uptr size) { in UncompressStack() argument
[all …]
Dsanitizer_stacktrace.h51 u32 *compressed, uptr size);
53 u32 *compressed, uptr size);
/external/skia/src/utils/
DSkParseColor.cpp193 int compressed = 0; in CreateTable() local
196 compressed <<= 5; in CreateTable()
197 compressed |= *name ? *name++ - 'a' + 1 : 0 ; in CreateTable()
200 compressed <<= 1; in CreateTable()
201 compressed |= 1; in CreateTable()
203 compressed |= 0x80000000; in CreateTable()
207 compressed &= ~1; in CreateTable()
211 SkDebugf("0x%08x, ", compressed); in CreateTable()
/external/skia/tests/
DFlateTest.cpp45 SkDynamicMemoryWStream compressed; in TestFlate() local
46 bool status = SkFlate::Deflate(testStream, &compressed); in TestFlate()
60 REPORTER_ASSERT(reporter, compressed.getOffset() < 1024); in TestFlate()
62 REPORTER_ASSERT(reporter, compressed.getOffset() > 1024); in TestFlate()
64 SkAutoDataUnref data1(compressed.copyToData()); in TestFlate()
/external/chromium/net/spdy/
Dspdy_test_util.h40 bool compressed; member
125 bool compressed,
134 bool compressed,
193 bool compressed,
203 bool compressed,
214 bool compressed,
Dspdy_test_util.cc167 header_info.compressed, &headers); in ConstructSpdyPacket()
171 header_info.compressed, &headers); in ConstructSpdyPacket()
178 header_info.compressed, &headers); in ConstructSpdyPacket()
269 bool compressed, in ConstructSpdyControlFrame() argument
278 compressed, in ConstructSpdyControlFrame()
290 bool compressed, in ConstructSpdyControlFrame() argument
305 compressed, // Compressed in ConstructSpdyControlFrame()
324 bool compressed, in ConstructSpdyGet() argument
334 compressed, // Compressed in ConstructSpdyGet()
387 bool compressed, in ConstructSpdyGet() argument
[all …]
Dspdy_framer.h190 bool compressed,
201 bool compressed,
230 bool compressed,
/external/chromium/net/base/
Dsdch_filter_unittest.cc83 std::string compressed(server_hash); in NewSdchCompressedData() local
84 compressed.append("\0", 1); in NewSdchCompressedData()
85 compressed.append(vcdiff_compressed_data_); in NewSdchCompressedData()
86 return compressed; in NewSdchCompressedData()
419 std::string compressed(NewSdchCompressedData(dictionary)); in TEST_F() local
432 EXPECT_TRUE(FilterTestData(compressed, feed_block_size, output_block_size, in TEST_F()
442 EXPECT_TRUE(FilterTestData(compressed, feed_block_size, output_block_size, in TEST_F()
457 std::string compressed(NewSdchCompressedData(dictionary)); in TEST_F() local
470 EXPECT_FALSE(FilterTestData(compressed, feed_block_size, output_block_size, in TEST_F()
488 std::string compressed(NewSdchCompressedData(dictionary)); in TEST_F() local
[all …]
/external/zlib/src/doc/
Drfc1951.txt42 This specification defines a lossless compressed data format that
80 3.2.4. Non-compressed blocks (BTYPE=00) ................... 11
97 compressed data format that:
126 * Allow random access to compressed data;
189 A compressed data set consists of a series of blocks, corresponding
193 Each block is compressed using a combination of the LZ77 algorithm
200 describe the representation of the compressed data part, and a
201 compressed data part. (The Huffman trees themselves are compressed
202 using Huffman encoding.) The compressed data consists of a series of
212 compressed data is represented using a Huffman code, using one code
[all …]
Drfc1950.txt44 This specification defines a lossless compressed data format. The
89 compressed data format that:
106 allow random access to compressed data.
131 The specification specifies a compressed data format that can be
239 |...compressed data...| ADLER32 |
259 extra field before the compressed data.
291 producing any compressed output. DICT is the Adler-32 checksum
309 compressed data
310 For compression method 8, the compressed data is stored in the
311 deflate compressed data format as described in the document
[all …]
Drfc1952.txt42 This specification defines a lossless compressed data format that is
91 compressed data format that:
121 * Provide random access to compressed data;
233 A gzip file consists of a series of "members" (compressed data
271 |...compressed blocks...| (more-->)
326 immediately before the compressed data. The CRC16 consists
348 is the original name of the file being compressed, with any
350 compressed is on a file system with case insensitive names,
352 data was compressed from a source other than a named file;
366 file being compressed. The time is in Unix format, i.e.,
[all …]
/external/bzip2/
Dbzip2.txt27 mand-line flags. Each file is replaced by a compressed
29 Each compressed file has the same modification date, per-
43 will decline to write compressed output to a terminal, as
51 compressed file as follows:
68 catenation of two or more compressed files. The result is
70 Integrity testing (-t) of concatenated compressed files is
78 ple compressed file representations. Such a stream can be
91 Compression is always performed, even if the compressed
102 tion of the compressed data, and against undetected bugs
113 2 to indicate a corrupt compressed file, 3 for an internal
[all …]
Dbzip2.1.preformatted30 mand‐line flags. Each file is replaced by a compressed
32 Each compressed file has the same modification date, per­
46 will decline to write compressed output to a terminal, as
54 compressed file as follows:
71 catenation of two or more compressed files. The result is
73 Integrity testing (−t) of concatenated compressed files is
81 ple compressed file representations. Such a stream can be
94 Compression is always performed, even if the compressed
105 tion of the compressed data, and against undetected bugs
116 2 to indicate a corrupt compressed file, 3 for an internal
[all …]
Dbzdiff.15 bzcmp, bzdiff \- compare bzip2 compressed files
22 program on bzip2 compressed files. All options specified are passed
Dbzgrep.15 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/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DDDSLoader.java106 private boolean compressed; field in DDSLoader
158 compressed = true; in loadDX10Header()
257 compressed = true; in readPixelFormat()
291 compressed = false; in readPixelFormat()
314 compressed = false; in readPixelFormat()
398 if (compressed) { in loadSizes()
739 if (compressed) { in readData()
748 if (compressed) { in readData()
757 if (compressed) { in readData()
/external/webkit/Source/WebKit/qt/tests/MIMESniffing/
Dresources.qrc10 <file alias="application_x-rar-compressed">resources/application_x-rar-compressed</file>
/external/webkit/Tools/DumpRenderTree/chromium/
DImageDiff.cpp110 vector<unsigned char> compressed; in createFromFilename() local
115 std::copy(buf, &buf[numRead], std::back_inserter(compressed)); in createFromFilename()
119 … if (!webkit_support::DecodePNG(&compressed[0], compressed.size(), &m_data, &m_width, &m_height)) { in createFromFilename()
/external/libpng/
DANNOUNCE11 libpng-1.2.46.tar.xz (LZMA-compressed, recommended)
18 libpng-1.2.46-no-config.tar.xz (LZMA-compressed, recommended)
/external/libvpx/
Dusage_cx.dox5 compressed data. The <code>deadline</code> parameter controls the amount
/external/compiler-rt/lib/asan/tests/
Dasan_noinst_test.cc215 u32 compressed[2 * kNumPcs]; in CompressStackTraceTest() local
225 __asan::StackTrace::CompressStack(&stack0, compressed, compress_size); in CompressStackTraceTest()
228 __asan::StackTrace::UncompressStack(&stack1, compressed, compress_size); in CompressStackTraceTest()
242 u32 compressed[2 * kNumPcs]; in CompressStackTraceBenchmark() local
251 __asan::StackTrace::CompressStack(&stack0, compressed, compress_size); in CompressStackTraceBenchmark()
/external/zlib/src/
DFAQ28 Make sure that before the call of compress(), the length of the compressed
29 buffer is equal to the available size of the compressed buffer and not
135 use the same compressed data format internally, but have different headers
136 and trailers around the compressed data.
195 exchange compressed data between them?
207 No. The PKWare DCL uses a completely different compressed data format than
211 28. Can I access data randomly in a compressed stream?
280 invalid compressed data.
308 37. Will zlib read the (insert any ancient or arcane format here) compressed
326 the raw deflate compressed data format. While the HTTP 1.1 RFC 2616
/external/libvpx/examples/
Dsimple_decoder.txt6 containing the compressed data (in IVF format), passes it through the
16 the raw compressed data.
Dsimple_encoder.txt6 YV12 format, passes it through the encoder, and writes the compressed
16 the raw compressed data.

123456