/external/elfutils/tests/ |
D | run-elfgetzdata.sh | 24 1: .text, NOT compressed 25 2: .zdebug_aranges, GNU compressed, size: 60 26 3: .zdebug_info, GNU compressed, size: aa 27 4: .debug_abbrev, NOT compressed 28 5: .zdebug_line, GNU compressed, size: 8d 29 6: .shstrtab, NOT compressed 30 7: .symtab, NOT compressed 31 8: .strtab, NOT compressed 35 1: .text, NOT compressed 36 2: .zdebug_aranges, GNU compressed, size: 60 [all …]
|
/external/brotli/java/org/brotli/dec/ |
D | SynthTest.java | 43 private void checkSynth(byte[] compressed, boolean expectSuccess, in checkSynth() argument 47 byte[] actual = decompress(compressed); in checkSynth() 63 byte[] compressed = { in testBaseDictWord() 77 compressed, in testBaseDictWord() 84 byte[] compressed = { in testBaseDictWordFinishBlockOnRingbufferWrap() 100 compressed, in testBaseDictWordFinishBlockOnRingbufferWrap() 107 byte[] compressed = { in testBaseDictWordTooLong() 122 compressed, in testBaseDictWordTooLong() 128 byte[] compressed = { in testBlockCountMessage() 174 compressed, in testBlockCountMessage() [all …]
|
D | DecodeTest.java | 68 private void checkDecodeResourceWithDictionary(String expected, String compressed, in checkDecodeResourceWithDictionary() argument 71 byte[] compressedBytes = Transform.readUniBytes(compressed); in checkDecodeResourceWithDictionary() 77 private void checkDecodeResource(String expected, String compressed) throws IOException { in checkDecodeResource() argument 79 byte[] compressedBytes = Transform.readUniBytes(compressed); in checkDecodeResource()
|
/external/autotest/client/site_tests/platform_DebugDaemonDumpDebugLogs/ |
D | platform_DebugDaemonDumpDebugLogs.py | 17 def runDump(self, compressed): argument 18 filename = 'compressed_dump.tgz' if compressed else 'uncompressed_dump.tar' 22 self.iface.DumpDebugLogs(compressed, fh, signature="bh") 28 mode = 'r:gz' if compressed else 'r:' 32 "compressed" if compressed else "uncompressed")
|
/external/skia/src/utils/ |
D | SkParseColor.cpp | 192 int compressed = 0; in CreateTable() local 195 compressed <<= 5; in CreateTable() 196 compressed |= *name ? *name++ - 'a' + 1 : 0 ; in CreateTable() 199 compressed <<= 1; in CreateTable() 200 compressed |= 1; in CreateTable() 202 compressed |= 0x80000000; in CreateTable() 206 compressed &= ~1; in CreateTable() 210 SkDebugf("0x%08x, ", compressed); in CreateTable()
|
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_miptree.c | 38 nvc0_mt_choose_storage_type(struct nv50_miptree *mt, bool compressed) in nvc0_mt_choose_storage_type() argument 51 if (compressed) in nvc0_mt_choose_storage_type() 59 if (compressed) in nvc0_mt_choose_storage_type() 67 if (compressed) in nvc0_mt_choose_storage_type() 73 if (compressed) in nvc0_mt_choose_storage_type() 80 if (compressed) in nvc0_mt_choose_storage_type() 88 if (compressed) in nvc0_mt_choose_storage_type() 94 if (compressed) { in nvc0_mt_choose_storage_type() 108 if (compressed && ms) { in nvc0_mt_choose_storage_type() 253 bool compressed = drm->version >= 0x01000101; in nvc0_miptree_create() local [all …]
|
/external/lz4/examples/ |
D | blockStreaming_doubleBuffer.md | 22 First of all, allocate "Double Buffer" for input and LZ4 compressed data buffer for output. 75 …t compress the line without dependencies and generates compressed block {Out#1} to LZ4 compressed … 93 - Read first compressed block. 95 - Read second compressed block. 97 - Read third compressed block. 100 Continue these procedure to the end of the compressed file.
|
D | blockStreaming_lineByLine.md | 23 First of all, allocate "Ring Buffer" for input and LZ4 compressed data buffer for output. 95 …st compress the line without dependencies and generates compressed line {Out#1} to LZ4 compressed … 117 - Read compressed line from the file to buffer. 122 Continue these procedure to the end of the compressed file.
|
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/ |
D | DeflateCompressorTest.java | 47 public byte[] compressed; field in 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));
|
/external/curl/tests/data/ |
D | test221 | 6 compressed 22 # I removed the first three bytes of the gzip compressed contents 47 HTTP GET gzip compressed content with broken gzip header 50 http://%HOSTIP:%HTTPPORT/221 --compressed
|
D | test220 | 6 compressed 47 HTTP GET gzip compressed content 50 http://%HOSTIP:%HTTPPORT/220 --compressed
|
/external/squashfs-tools/kernel/Documentation/filesystems/ |
D | squashfs.txt | 4 Squashfs is a compressed read-only filesystem for Linux. 45 compressed inode is on average 8 bytes in length (the exact length varies on 93 Metadata (inodes and directories) are compressed in 8Kbyte blocks. Each 94 compressed block is prefixed by a two byte length, the top bit is set if the 96 or if the compressed block was larger than the uncompressed block. 99 boundaries, therefore inodes overlap compressed blocks. Inodes are identified 100 by a 48-bit number which encodes the location of the compressed metadata block 116 Like inodes, directories are packed into compressed metadata blocks, stored 124 compressed metadata block, and therefore, can share the start block. 146 Regular files consist of a sequence of contiguous compressed blocks, and/or a [all …]
|
/external/xz-embedded/linux/lib/xz/ |
D | xz_dec_stream.c | 77 vli_type compressed; member 92 vli_type compressed; member 243 s->block.compressed += b->in_pos - s->in_start; in dec_block() 250 if (s->block.compressed > s->block_header.compressed in dec_block() 265 if (s->block_header.compressed != VLI_UNKNOWN in dec_block() 266 && s->block_header.compressed in dec_block() 267 != s->block.compressed) in dec_block() 276 + s->block.compressed; in dec_block() 502 s->block_header.compressed = s->vli; in dec_block_header() 504 s->block_header.compressed = VLI_UNKNOWN; in dec_block_header() [all …]
|
D | xz_dec_lzma2.c | 238 uint32_t compressed; member 852 if (s->temp.size > 0 || s->lzma2.compressed == 0) { in lzma2_lzma() 854 if (tmp > s->lzma2.compressed - s->temp.size) in lzma2_lzma() 855 tmp = s->lzma2.compressed - s->temp.size; in lzma2_lzma() 861 if (s->temp.size + tmp == s->lzma2.compressed) { in lzma2_lzma() 880 s->lzma2.compressed -= s->rc.in_pos; in lzma2_lzma() 898 if (in_avail >= s->lzma2.compressed + LZMA_IN_REQUIRED) in lzma2_lzma() 899 s->rc.in_limit = b->in_pos + s->lzma2.compressed; in lzma2_lzma() 907 if (in_avail > s->lzma2.compressed) in lzma2_lzma() 910 s->lzma2.compressed -= in_avail; in lzma2_lzma() [all …]
|
/external/brotli/tests/ |
D | roundtrip_test.sh | 23 compressed=${TMP_DIR}/${file##*/}.bro 25 $BRO -f -q $quality -i $file -o $compressed 26 $BRO -f -d -i $compressed -o $uncompressed
|
/external/curl/docs/cmdline-opts/ |
D | compressed.d | 1 Long: compressed 2 Help: Request compressed response 5 Request a compressed response using one of the algorithms curl supports, and
|
/external/autotest/client/site_tests/platform_CompressedSwapPerf/ |
D | control | 2 PURPOSE = "Measure performance of compressed swap." 5 - compressed swap is not configured. 13 Run some basic performance benchmarks on compressed swap.
|
/external/lz4/tests/ |
D | fasttest.c | 55 int test_decompress(const char *uncompressed, const char *compressed) in test_decompress() argument 74 memcpy(&unBytes, compressed + offset, 4); in test_decompress() 75 memcpy(&bytes, compressed + offset + 4, 4); in test_decompress() 85 lz4StreamDecode, compressed + offset, output, unBytes); in test_decompress()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/compression/ |
D | ExhaustiveTest.java | 26 byte [] compressed = UnicodeCompressor.compress(s); in simpleTest() 27 String res = UnicodeDecompressor.decompress(compressed); in simpleTest() 31 + compressed.length + " bytes ===> " in simpleTest() 35 printBytes(compressed, compressed.length); in simpleTest() 96 byte[] compressed = new byte[compressedSize]; in myMultipassTest() 128 System.arraycopy(byteBuffer, 0, compressed, in myMultipassTest() 153 unicharsWritten = myDecompressor.decompress(compressed, in myMultipassTest()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/compression/ |
D | ExhaustiveTest.java | 27 byte [] compressed = UnicodeCompressor.compress(s); in simpleTest() 28 String res = UnicodeDecompressor.decompress(compressed); in simpleTest() 32 + compressed.length + " bytes ===> " in simpleTest() 36 printBytes(compressed, compressed.length); in simpleTest() 97 byte[] compressed = new byte[compressedSize]; in myMultipassTest() 129 System.arraycopy(byteBuffer, 0, compressed, in myMultipassTest() 154 unicharsWritten = myDecompressor.decompress(compressed, in myMultipassTest()
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-2.1 | 29 Zisofs compressed size 153.50 MB 30 Cloop (isofs) compressed size 1.74 MB 31 Squashfs2.1 compressed size 612 KB (0.60 MB) 45 Zisofs compressed size 589.81 MB 46 Cloop (isofs) compressed size 471.19 MB 47 Squashfs2.0 compressed size 448.58 MB 48 Squashfs2.1 compressed size 448.58 MB
|
/external/squashfs-tools/kernel/fs/squashfs/ |
D | block.c | 89 int bytes, compressed, b = 0, k = 0, page = 0, avail; in squashfs_read_data() local 102 compressed = SQUASHFS_COMPRESSED_BLOCK(length); in squashfs_read_data() 108 index, compressed ? "" : "un", length, srclength); in squashfs_read_data() 134 compressed = SQUASHFS_COMPRESSED(length); in squashfs_read_data() 140 compressed ? "" : "un", length); in squashfs_read_data() 155 if (compressed) { in squashfs_read_data()
|
/external/skia/tests/ |
D | PDFDeflateWStreamTest.cpp | 131 std::unique_ptr<SkStreamAsset> compressed(dynamicMemoryWStream.detachAsStream()); in DEF_TEST() local 132 std::unique_ptr<SkStreamAsset> decompressed(stream_inflate(r, compressed.get())); in DEF_TEST() 144 o.writeStream(compressed.get(), compressed->getLength()); in DEF_TEST() 145 compressed->rewind(); in DEF_TEST()
|
/external/autotest/client/site_tests/platform_CompressedSwap/ |
D | control | 2 PURPOSE = "Verify compressed swap is configured and basically works." 5 - compressed swap is not configured. 14 Verify compressed swap is configured and basically works.
|
/external/toybox/toys/pending/ |
D | xzcat.c | 1394 uint32_t compressed; member 1994 if (s->temp.size > 0 || s->lzma2.compressed == 0) { in lzma2_lzma() 1996 if (tmp > s->lzma2.compressed - s->temp.size) in lzma2_lzma() 1997 tmp = s->lzma2.compressed - s->temp.size; in lzma2_lzma() 2003 if (s->temp.size + tmp == s->lzma2.compressed) { in lzma2_lzma() 2022 s->lzma2.compressed -= s->rc.in_pos; in lzma2_lzma() 2040 if (in_avail >= s->lzma2.compressed + LZMA_IN_REQUIRED) in lzma2_lzma() 2041 s->rc.in_limit = b->in_pos + s->lzma2.compressed; in lzma2_lzma() 2049 if (in_avail > s->lzma2.compressed) return 0; in lzma2_lzma() 2051 s->lzma2.compressed -= in_avail; in lzma2_lzma() [all …]
|