/external/mesa3d/src/mesa/main/ |
texcompress.c | 48 * Get the GL base format of a specified GL compressed texture format 52 * "Compressed Internal Format Base Internal Format Type 72 * The base format of \c format if \c format is a compressed format (either 158 * Compressed textures with just red or red-green components are 179 * blue for these sRGB compressed formats makes them not really 196 * RGBA versions of the S3TC extensions compressed format tokens 206 * not including EXT_texture_sRGB's sRGB S3TC compressed formats. 303 * Convert a compressed MESA_FORMAT_x to a GLenum. 365 * Given a compressed MESA_FORMAT_x value, return the corresponding 369 * have originally specified a generic compressed format in thei [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...] |
PartiallyUncompressingPipeTest.java | 71 // Now use the compressed data as input to the PartiallyUncompressingPipe. 78 // A series of uncompressed, compressed, uncompressed, compressed, uncompressed bytes.
|
/external/mesa3d/src/gallium/drivers/nvc0/ |
nvc0_miptree.c | 60 nvc0_mt_choose_storage_type(struct nv50_miptree *mt, boolean compressed) 66 compressed = FALSE; /* not yet supported */ 75 if (compressed) 81 if (compressed) 88 if (compressed) 94 if (compressed) 100 if (compressed) 108 if (compressed) 114 if (compressed) { 128 if (compressed) { [all...] |
/frameworks/base/include/androidfw/ |
Asset.h | 102 * asset is compressed). 146 * Create the asset from a named, compressed file on disk (e.g. ".gz"). 162 * Create from compressed data. "fd" should be seeked to the start of 163 * the compressed data. This could be inside a gzip file or part of a 168 * This may not verify the validity of the compressed data until first 184 * Create the asset from a memory-mapped file segment with compressed 269 * An asset based on compressed data in a file. 304 off64_t mStart; // offset to start of compressed data 305 off64_t mCompressedLen; // length of the compressed data 312 class StreamingZipInflater* mZipInflater; // for streaming large compressed asset [all...] |
/external/lzma/xz-embedded/ |
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::__anon20046 91 /* Observed compressed size of the current Block */ 92 vli_type compressed; member in struct:xz_dec::__anon20047 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/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/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 | 44 // Compressed data with CRC-32 check, generated with: 56 // Compressed data without checksum, generated with: 95 void WriteAll(const brillo::Blob& compressed) { 97 EXPECT_TRUE(xz_writer_->Write(compressed.data(), compressed.size())); 152 brillo::Blob compressed(std::begin(kCompressed30KiBofA), 155 for (uint8_t byte : compressed) {
|
/external/icu/android_icu4j/src/main/tests/android/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); 74 logln("Compressed:"); 97 byte[] compressed = new byte[compressedSize]; 129 System.arraycopy(byteBuffer, 0, compressed, 132 // update the no. of characters compressed [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/compression/ |
ExhaustiveTest.java | 25 byte [] compressed = UnicodeCompressor.compress(s); 26 String res = UnicodeDecompressor.decompress(compressed); 30 + compressed.length + " bytes ===> " 33 logln("Compressed:"); 34 printBytes(compressed, compressed.length); 70 logln("Compressed:"); 93 byte[] compressed = new byte[compressedSize]; 125 System.arraycopy(byteBuffer, 0, compressed, 128 // 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.25/binutils/testsuite/binutils-all/ |
readelf.exp | 218 # This tests "readelf -wa", but on a file with a compressed 228 unsupported "readelf -wa (compressed)" 232 # Compile the compressed-debug-section test file. 233 if { [target_compile $srcdir/$subdir/dw2-compressed.S tmpdir/dw2-compressed.o object debug] != "" } { 235 untested "readelf -wa (compressed)" 240 set tempfile [remote_download host tmpdir/dw2-compressed.o] 251 fail "readelf -wa (compressed)" 257 pass "readelf -wa (compressed)"
|
/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)
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfHuf.cpp | 193 // of the corresponding code (in the compressed data) 447 // - runs of zeroes are compressed as follows: 755 char* out) // o: compressed output buffer 854 const char* in, // i : compressed input buffer 1006 char compressed[]) 1018 char *tableStart = compressed + 20; 1027 writeUInt (compressed, im); 1028 writeUInt (compressed + 4, iM); 1029 writeUInt (compressed + 8, tableLength); 1030 writeUInt (compressed + 12, nBits) [all...] |
/toolchain/binutils/binutils-2.25/binutils/testsuite/ |
ChangeLog | 64 * binutils-all/i386/compressed-1a.d: Likewise. 66 * binutils-all/x86-64/compressed-1a.d: Likewise. 108 * binutils-all/x86-64/compressed-1a.d: Allow wide display of addresses. 119 * binutils-all/x86-64/compressed-1a.d: Updated for 64-bit addresses. 123 * binutils-all/x86-64/compressed-1a.d: Update expected output to 151 * binutils-all/i386/compressed-1b.d: Updated for text/data/bss 153 * binutils-all/i386/compressed-1c.d: Likewise. 154 * binutils-all/x86-64/compressed-1b.d: Likewise. 155 * binutils-all/x86-64/compressed-1c.d: Likewise. 161 * binutils-all/i386/compressed-1a.d: Likewise [all...] |
/device/asus/fugu/libaudio/ |
HDMIAudioOutput.cpp | 74 void HDMIAudioOutput::setChannelStatusToCompressed(bool compressed) 81 ALOGI("setChannelStatusToCompressed %d", compressed); 103 if (compressed) {
|
/external/deqp/modules/gles3/functional/ |
es3fCompressedTextureTests.cpp | 21 * \brief Compressed texture tests 56 : TestCaseGroup (context, "compressed", "Compressed Texture Tests")
|
/external/elfutils/tests/ |
elfgetchdr.c | 87 printf ("section %d: ELF Compressed ch_type: %" PRId32 112 printf ("section %d: GNU Compressed size: %zx\n", idx, size); 115 printf ("section %d: NOT Compressed\n", idx);
|
/external/kernel-headers/original/uapi/asm-arm/asm/ |
setup.h | 70 /* describes where the compressed ramdisk image lives (virtual address) */ 77 /* describes where the compressed ramdisk image lives (physical address) */ 82 __u32 size; /* size of compressed ramdisk image in bytes */
|
/external/llvm/docs/ |
CMakeLists.txt | 25 # If asked, configure doxygen for the creation of a Qt Compressed Help file. 27 "Generate a Qt Compressed Help file." OFF) 30 "Filename of the Qt Compressed help file")
|
/external/llvm/include/llvm/ADT/ |
IntEqClasses.h | 33 /// When compressed, EC[i] is the equivalence class of i. 36 /// NumClasses - The number of equivalence classes when compressed, or 0 when 75 /// This requires a compressed map.
|