Searched defs:uncompressed (Results 1 - 9 of 9) sorted by relevance

/external/lzma/Java/Tukaani/src/org/tukaani/xz/index/
H A DIndexRecord.java14 final long uncompressed; field in class:IndexRecord
16 IndexRecord(long unpadded, long uncompressed) { argument
18 this.uncompressed = uncompressed;
H A DIndexDecoder.java29 private final long[] uncompressed; field in class:IndexDecoder
84 uncompressed = new long[(int)count];
102 uncompressed[record] = uncompressedSum + uncompressedSize;
107 // Remember the uncompressed size of the largest Block.
188 if (uncompressed[i] <= target)
213 info.uncompressedOffset = uncompressed[pos - 1];
217 info.uncompressedSize = uncompressed[pos] - info.uncompressedOffset;
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
H A DDeflateCompressorTest.java44 * Helper class for storing the compressed and uncompressed form of something together.
48 public byte[] uncompressed; field in class:DeflateCompressorTest.Content
60 * @return the uncompressed data as a byte array
89 byte[] uncompressed =
91 Assert.assertArrayEquals(CONTENT, uncompressed);
142 content[strategy].uncompressed =
144 Assert.assertArrayEquals(CONTENT, content[strategy].uncompressed);
171 content[level].uncompressed =
173 Assert.assertArrayEquals(CONTENT, content[level].uncompressed);
194 byte[] uncompressed
[all...]
/external/lz4/tests/
H A Dfasttest.c55 int test_decompress(const char *uncompressed, const char *compressed) argument
73 /* Read uncompressed size and compressed size */
88 { int const r = memcmp(uncompressed + unOffset, output, unBytes);
/external/lzma/xz-embedded/
H A Dxz_dec_stream.c22 vli_type uncompressed; member in struct:xz_dec_hash
59 /* Type of the integrity check calculated from uncompressed data */
83 vli_type uncompressed; member in struct:xz_dec::__anon14077
94 /* Observed uncompressed size of the current Block */
95 vli_type uncompressed; member in struct:xz_dec::__anon14078
219 * the observed compressed and uncompressed sizes of the Block so that
244 s->block.uncompressed += b->out_pos - s->out_start;
251 || s->block.uncompressed
252 > s->block_header.uncompressed)
270 if (s->block_header.uncompressed !
[all...]
H A Dxz_dec_lzma2.c56 * would read beyond the beginning of the uncompressed stream.
73 * read beyond the beginning of the uncompressed stream.
232 uint32_t uncompressed; member in struct:lzma2_dec
235 * Compressed size of LZMA chunk or compressed/uncompressed
236 * size of uncompressed chunk (64 KiB at maximum)
242 * the first chunk (LZMA or uncompressed).
373 /* Copy uncompressed data as is from input to dictionary and output buffers. */
929 * decoding or copying of uncompressed chunks to other functions.
945 * an uncompressed chunk
961 * uncompressed siz
[all...]
/external/toybox/toys/pending/
H A Dxzcat.c441 * Absolute position relative to the beginning of the uncompressed
1005 * number of bits of the current uncompressed offset. In some places there
1228 * would read beyond the beginning of the uncompressed stream.
1241 * read beyond the beginning of the uncompressed stream.
1394 uint32_t uncompressed; member in struct:lzma2_dec
1397 * Compressed size of LZMA chunk or compressed/uncompressed
1398 * size of uncompressed chunk (64 KiB at maximum)
1404 * the first chunk (LZMA or uncompressed).
1526 /* Copy uncompressed data as is from input to dictionary and output buffers. */
2076 * decoding or copying of uncompressed chunk
2355 vli_type uncompressed; member in struct:xz_dec_hash
2408 vli_type uncompressed; member in struct:xz_dec::__anon21010
2420 vli_type uncompressed; member in struct:xz_dec::__anon21011
[all...]
/external/dng_sdk/source/
H A Ddng_image_writer.cpp4179 // Create pixel buffer to hold uncompressed tile.
4184 // Get the uncompressed data.
4628 // Find size of uncompressed buffer.
5601 bool uncompressed)
5610 uncompressed);
5622 bool uncompressed)
5639 uint32 compression = uncompressed ? ccUncompressed : ccJPEG;
5647 if (uncompressed || maxBackwardVersion < dngVersion_1_4_0_0)
5734 (!uncompressed);
5902 if (isFloatingPoint && !uncompressed)
5596 WriteDNG(dng_host &host, dng_stream &stream, dng_negative &negative, const dng_preview_list *previewList, uint32 maxBackwardVersion, bool uncompressed) argument
5616 WriteDNG(dng_host &host, dng_stream &stream, const dng_negative &negative, const dng_metadata &constMetadata, const dng_preview_list *previewList, uint32 maxBackwardVersion, bool uncompressed) argument
[all...]
/external/squashfs-tools/squashfs-tools/
H A Dmksquashfs.c451 int block_size, int uncompressed, int data_block)
455 if(!uncompressed) {
475 int uncompressed, int data_block)
477 return mangle2(stream, d, s, size, block_size, uncompressed,
1713 void *buffer2, int uncompressed)
1736 SQUASHFS_METADATA_SIZE, uncompressed, 0);
1761 TRACE("generic_write_table: total uncompressed %d compressed %lld\n",
2539 TRACE("Writing fragment %lld, uncompressed size %d, "
4096 INFO("file %s, uncompressed size %lld "
4175 INFO("file %s, uncompressed "
450 mangle2(void *strm, char *d, char *s, int size, int block_size, int uncompressed, int data_block) argument
474 mangle(char *d, char *s, int size, int block_size, int uncompressed, int data_block) argument
1712 generic_write_table(int length, void *buffer, int length2, void *buffer2, int uncompressed) argument
[all...]

Completed in 1194 milliseconds