/external/lzma/Java/Tukaani/src/org/tukaani/xz/ |
XZOutputStream.java | 81 * @param out output stream to which the compressed data 103 * @param out output stream to which the compressed data 127 * @param out output stream to which the compressed data 147 * @param out output stream to which the compressed data 228 * Writes one byte to be compressed. 245 * Writes an array of bytes to be compressed. 247 * data won't be readable from the compressed output immediately. 303 * Doing this very often will increase the size of the compressed 342 * Calling this function very often may increase the compressed
|
/external/python/cpython2/Doc/library/ |
zlib.rst | 64 Compresses the data in *string*, returning a string contained compressed data. 202 Compress *string*, returning a string containing compressed data for at least 210 All pending input is processed, and a string containing the remaining compressed 215 :const:`Z_FINISH` finishes the compressed stream and prevents compressing any 233 A string which contains any bytes past the end of the compressed data. That is, 235 available. If the whole string turned out to contain compressed data, this is 238 The only way to determine where a string of compressed data ends is by actually 239 decompressing it. This means that when compressed data is contained part of a 264 no longer than *max_length*. This may mean that not all of the compressed input
|
/external/xz-embedded/linux/lib/ |
decompress_unxz.c | 2 * Wrapper for decompressing XZ-compressed kernel, initramfs, and initrd 13 * At least on x86, the kernel is decompressed in place: the compressed data 15 * most of the compressed data. There must be enough safety margin to 22 * the file is compressed extremely well, and the rest of the file is 32 * Compressed Data (N) 46 * Compressed Data contains LZMA2 or BCJ+LZMA2 encoded data. Since BCJ 63 * smaller than the compressed size. 86 * For comparison, according to arch/x86/boot/compressed/misc.c, the 371 error("XZ-compressed data is corrupt");
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseUefiDecompressLib/ |
BaseUefiDecompressLib.c | 639 Given a compressed source buffer, this function retrieves the size of
641 to decompress the compressed source buffer.
646 be determined from the compressed data specified by Source and SourceData,
659 @param Source The source buffer containing the compressed data.
662 that will be generated when the compressed buffer specified
665 is required to decompress the compressed buffer specified
674 the compressed data specified by Source
708 Decompresses a compressed source buffer.
715 If the compressed source data specified by Source is successfully decompressed
716 into Destination, then RETURN_SUCCESS is returned. If the compressed source data [all...] |
/external/deqp/android/cts/master/src/ |
gles3-hw-issues.txt | 66 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x10 67 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x10_srgb 68 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x5 69 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x5_srgb 70 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x6 71 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x6_srgb 72 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x8 73 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x8_srgb 74 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.12x10 75 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.12x10_srg [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_tex_layout.c | 49 * uncompressed surface formats, and as a compression block in compressed 125 * | BC1-5 compressed format (DXTn/S3TC) | 4 | 4 | 4 | 4 | 4 | 126 * | FXT1 compressed format | 8 | 8 | 8 | 8 | 8 | 210 * | BC1-5 compressed format (DXTn/S3TC) | 4 | 4 | 4 | 4 | 4 | 211 * | FXT1 compressed format | 4 | 4 | 4 | 4 | 4 | 305 if (mt->compressed) 316 if (mt->compressed) { 338 if (mt->compressed) 483 * compressed block size on Gen9 so physical_qpitch matches mt->qpitch. 485 physical_qpitch = (mt->compressed && brw->gen < 9 ? mt->qpitch / 4 [all...] |
/libcore/ojluni/src/main/java/java/util/zip/ |
ZipOutputStream.java | 40 * ZIP file format. Includes support for both compressed and uncompressed 108 * Compression method for compressed (DEFLATED) entries. 204 // store size, compressed size, and crc-32 in LOC header 208 // store size, compressed size, and crc-32 in data descriptor 209 // immediately following the compressed entry data 215 // compressed size, uncompressed size, and crc-32 must all be 223 "STORED entry where compressed != uncompressed size"); 227 "STORED entry missing size, compressed size, or crc-32"); 260 // verify size, compressed size, and crc-32 settings 268 "invalid entry compressed size (expected " [all...] |
/external/libvpx/libvpx/vpx/ |
vpx_encoder.h | 114 /*!\brief Compressed Frame Flags 116 * This type represents a bitfield containing information about a compressed 153 VPX_CODEC_CX_FRAME_PKT, /**< Compressed video frame */ 174 void *buf; /**< compressed data buffer */ 175 size_t sz; /**< length of compressed data */ 185 } frame; /**< data for compressed frame packet */ [all...] |
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/ |
UnitTestZipArchive.java | 47 * The data for the first entry in the zip file, compressed at level 1. Has no comment. 57 * The data for the second entry in the zip file, compressed at level 6. Has no comment. 67 * The data for the third entry in the zip file, compressed at level 9. Has a comment. 89 * @param level the level the entry is compressed with 105 * @param level the level the entry is compressed with 235 // This entry should be uncompressed. So the "compressed" size should be the same as the
|
UnitTestZipEntry.java | 93 * Returns the compressed form of the content, according to the level, that should be found in the 94 * zip archive. If the level is 0 (store, i.e. not compressed) this is the same as calling
|
/prebuilts/go/darwin-x86/src/compress/lzw/ |
reader_test.go | 22 compressed string 99 rc := NewReader(strings.NewReader(tt.compressed), order, litWidth) 235 compressed := new(bytes.Buffer) 236 w := NewWriter(compressed, LSB, 8) 244 buf1 := compressed.Bytes() 245 buf0, compressed, w = nil, nil, nil
|
/prebuilts/go/linux-x86/src/compress/lzw/ |
reader_test.go | 22 compressed string 99 rc := NewReader(strings.NewReader(tt.compressed), order, litWidth) 235 compressed := new(bytes.Buffer) 236 w := NewWriter(compressed, LSB, 8) 244 buf1 := compressed.Bytes() 245 buf0, compressed, w = nil, nil, nil
|
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/DxeMain/ |
DxeMain.c | 816 Given a compressed source buffer, this function retrieves the size of the
818 the compressed source buffer.
823 scratch buffer cannot be determined from the compressed data specified by
834 @param Source The source buffer containing the compressed data.
[all...] |
/external/toybox/toys/pending/ |
xzcat.c | 50 * @XZ_DATA_ERROR: Compressed data is corrupt. 59 * you can get this error only when decoding a compressed stream that is 1394 uint32_t compressed; member in struct:lzma2_dec 2395 vli_type compressed; member in struct:xz_dec::__anon40298 2410 vli_type compressed; member in struct:xz_dec::__anon40299 [all...] |
/external/deqp/modules/gles31/functional/ |
es31fTextureLevelStateQueryTests.cpp | 130 bool compressed; member in struct:deqp::gles31::Functional::__anon18834::TextureGenerationSpec::TextureLevelSpec 138 , compressed (false) 422 level.compressed = false; 443 level.compressed = false; 464 level.compressed = false; 491 level.compressed = false; 515 level.compressed = false; 538 level.compressed = false; 558 level.compressed = false; 578 level.compressed = false [all...] |
/external/bzip2/ |
manual.html | 188 <dt><span class="sect2"><a href="#embed">3.4.8. Handling embedded compressed data streams</a></span></dt> 206 <dt><span class="sect1"><a href="#limits">4.1. Limitations of the compressed file format</a></span></dt> 225 handling compressed data in the 304 replaced by a compressed version of itself, with the name 306 compressed file has the same modification date, permissions, and, 322 compressed output to a terminal, as this would be entirely 330 filename for the decompressed file from that of the compressed 361 compressed files. The result is the concatenation of the 363 (<code class="computeroutput">-t</code>) of concatenated compressed 367 Multiple files may be compressed and decompressed like this. Th [all...] |
/bionic/libc/include/arpa/ |
ftp.h | 85 #define MODE_C 3 /* compressed */ 87 char *modenames[] = {"0", "Stream", "Block", "Compressed" };
|
/device/generic/goldfish-opengl/system/include/ETC1/ |
etc1.h | 42 // pOut is an ETC1 compressed version of the data. 48 // pIn is an ETC1 compressed version of the data.
|
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/ |
ns_name.c | 273 * Unpack a domain name from a message, source may be compressed.
325 * Check for loops in the compressed name;
350 * Size of the compressed name, or -1.
352 * 'dnptrs' is an array of pointers to previous compressed names.
449 * Expand compressed domain name to presentation format.
475 * 'dnptrs' is an array of pointers to previous compressed names.
496 * Advance *ptrptr to skip over the compressed name it points at.
579 * Search for the counted-label name in an array of compressed names.
|
/device/linaro/bootloader/edk2/StdLib/Include/arpa/ |
ftp.h | 87 #define MODE_C 3 /* compressed */
89 char *modenames[] = {"0", "Stream", "Block", "Compressed" };
|
/external/bsdiff/ |
endsley_patch_writer.h | 30 // instead, the whole file (including the magic string) is compressed with any 42 // compressed using the compressor type |type|.
|
/external/caliper/caliper/src/main/resources/com/google/caliper/config/ |
global-config.properties | 22 vm.jdk-64-compressed.home=jdk-64 23 vm.jdk-64-compressed.args=-d64 -XX:+UseCompressedOops
|
/external/elfutils/libdwelf/ |
libdwelf.h | 68 /* Returns the size of the uncompressed data of a GNU compressed 70 isn't checked by this function). If the section isn't compressed
|
/external/elfutils/tests/ |
msg_tst.c | 80 { ELF_E_NOT_COMPRESSED, "section does not contain compressed data" }, 81 { ELF_E_ALREADY_COMPRESSED, "section contains compressed data" },
|
run-zstrptr.sh | 24 Strings in section 32 (compressed): 99 Strings in section 30 (compressed):
|