HomeSort by relevance Sort by last modified time
    Searched refs:uncompressed (Results 26 - 50 of 115) sorted by null

12 3 4 5

  /prebuilts/go/darwin-x86/src/compress/gzip/
gunzip.go 61 // uncompressed data from a gzip-format compressed file.
65 // return the concatenation of the uncompressed data of each.
68 // Gzip files store a length and checksum of the uncompressed data.
70 // reaches the end of the uncompressed data if it does not
79 size uint32 // Uncompressed size (section 2.3.1)
245 // Read implements io.Reader, reading uncompressed bytes from its underlying Reader.
  /prebuilts/go/linux-x86/src/compress/gzip/
gunzip.go 61 // uncompressed data from a gzip-format compressed file.
65 // return the concatenation of the uncompressed data of each.
68 // Gzip files store a length and checksum of the uncompressed data.
70 // reaches the end of the uncompressed data if it does not
79 size uint32 // Uncompressed size (section 2.3.1)
245 // Read implements io.Reader, reading uncompressed bytes from its underlying Reader.
  /external/xz-embedded/linux/lib/xz/
xz_dec_lzma2.c 56 * would read beyond the beginning of the uncompressed stream.
73 * read beyond the beginning of the uncompressed stream.
231 /* Uncompressed size of LZMA chunk (2 MiB at maximum) */
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 chun
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/
sfnt.py 148 entry.uncompressed = True
314 totalSfntSize: L # uncompressed size
319 metaOrigLength: L # length of uncompressed metadata
341 self.uncompressed = False # if True, always embed entry raw
403 if not self.uncompressed:
405 if self.uncompressed or len(compressedData) >= self.origLength:
406 # Encode uncompressed
  /external/tensorflow/tensorflow/core/lib/jpeg/
jpeg_mem_unittest.cc 456 std::unique_ptr<uint8[]> uncompressed(Uncompress(
458 CHECK(uncompressed != nullptr);
468 Compress(uncompressed.get(), w, h, flags, &recompressed);
  /external/zlib/src/contrib/delphi/
ZLib.pas 40 adler: Longint; // adler32 value of the uncompressed data
69 The Position property returns the number of uncompressed bytes of
104 the uncompressed data has been reached. Seeking backwards, seeking relative
108 The Position property returns the number of bytes of uncompressed data that
  /prebuilts/go/darwin-x86/src/crypto/elliptic/
elliptic.go 304 // Marshal converts a point into the uncompressed form specified in section 4.3.6 of ANSI X9.62.
309 ret[0] = 4 // uncompressed point
319 // It is an error if the point is not in uncompressed form or is not on the curve.
326 if data[0] != 4 { // uncompressed form
  /prebuilts/go/darwin-x86/src/time/
zoneinfo_read.go 225 // in dir. dir can either be an uncompressed zip file, or a directory.
237 // individually, we ship them in an uncompressed zip file.
261 // in the given uncompressed zip file.
377 // timezone database directory, tzdata database file or an uncompressed
  /prebuilts/go/linux-x86/src/crypto/elliptic/
elliptic.go 304 // Marshal converts a point into the uncompressed form specified in section 4.3.6 of ANSI X9.62.
309 ret[0] = 4 // uncompressed point
319 // It is an error if the point is not in uncompressed form or is not on the curve.
326 if data[0] != 4 { // uncompressed form
  /prebuilts/go/linux-x86/src/time/
zoneinfo_read.go 225 // in dir. dir can either be an uncompressed zip file, or a directory.
237 // individually, we ship them in an uncompressed zip file.
261 // in the given uncompressed zip file.
377 // timezone database directory, tzdata database file or an uncompressed
  /toolchain/binutils/binutils-2.27/zlib/contrib/delphi/
ZLib.pas 40 adler: Longint; // adler32 value of the uncompressed data
69 The Position property returns the number of uncompressed bytes of
104 the uncompressed data has been reached. Seeking backwards, seeking relative
108 The Position property returns the number of bytes of uncompressed data that
  /external/python/cpython3/Lib/test/
test_lzma.py 177 # Retrieve remaining uncompressed data
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
unzip_nacl.go 22 out []byte // uncompressed output
268 // Copy a single uncompressed data block from input to output.
270 // Uncompressed.
615 // buf is uncompressed
  /prebuilts/go/linux-x86/src/syscall/
unzip_nacl.go 22 out []byte // uncompressed output
268 // Copy a single uncompressed data block from input to output.
270 // Uncompressed.
615 // buf is uncompressed
  /external/dng_sdk/source/
dng_image_writer.h 1169 /// \param uncompressed True to force uncompressed images. Otherwise use normal compression.
1176 bool uncompressed = false);
1185 /// \param uncompressed True to force uncompressed images. Otherwise use normal compression.
1193 bool uncompressed = false);
  /external/elfutils/tests/
run-readelf-zp.sh 25 String section [35] '.zdebug_str' contains 2431 bytes (6433 uncompressed) at offset 0x1da3:
  /prebuilts/go/darwin-x86/src/compress/bzip2/
bzip2_test.go 222 // Determine the uncompressed size of testfile.
  /prebuilts/go/linux-x86/src/compress/bzip2/
bzip2_test.go 222 // Determine the uncompressed size of testfile.
  /build/make/core/
dex_preopt_odex_install.mk 78 # We also don't strip if all dexs are uncompressed (dexopt will not store the dex code),
292 # No reason to use a dm file if the dex is already uncompressed.
  /build/make/tools/releasetools/
sign_target_files_apks 178 uncompressed = tempfile.NamedTemporaryFile()
180 open(uncompressed.name, "wb") as out_file:
184 # replace it with the uncompressed version.
189 unsigned = uncompressed
sign_target_files_apks.py 178 uncompressed = tempfile.NamedTemporaryFile()
180 open(uncompressed.name, "wb") as out_file:
184 # replace it with the uncompressed version.
189 unsigned = uncompressed
  /prebuilts/go/darwin-x86/src/compress/flate/
inflate.go 621 // Copy a single uncompressed data block from input to output.
623 // Uncompressed.
778 // to read the uncompressed version of r.
799 // the uncompressed data stream started with the given dictionary,
  /prebuilts/go/linux-x86/src/compress/flate/
inflate.go 621 // Copy a single uncompressed data block from input to output.
623 // Uncompressed.
778 // to read the uncompressed version of r.
799 // the uncompressed data stream started with the given dictionary,
  /build/soong/third_party/zip/
reader.go 332 // Assume that uncompressed size 2³²-1 could plausibly happen in
338 // accept the uncompressed size 2³²-1 as valid.
writer.go 86 b.uint32(uint32max) // uncompressed size
275 b.uint32(0) // uncompressed size

Completed in 667 milliseconds

12 3 4 5