HomeSort by relevance Sort by last modified time
    Searched refs:compression (Results 126 - 150 of 412) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/http2/hpack/
hpack_test.go 80 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.1
87 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.2
93 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.3
99 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.2.4
137 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.3
185 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.4
232 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.5
302 // http://http2.github.io/http2-spec/compression.html#rfc.section.C.6
  /build/soong/third_party/zip/
example_test.go 79 // Override the default Deflate compressor with a higher compression level.
  /external/ImageMagick/coders/
icon.c 130 compression,
396 icon_info.compression=ReadBlobLSBLong(image);
841 % dimensions are 256x256 and image->compression is undefined or is defined as
127 compression, member in struct:_IconInfo
    [all...]
ps.c 1466 compression; local
    [all...]
  /external/deqp/executor/
xeTestCaseResult.hpp 253 enum Compression
261 Image (void) : Item(TYPE_IMAGE), width(0), height(0), format(FORMAT_LAST), compression(COMPRESSION_LAST) {}
269 Compression compression; member in class:xe::ri::Image
xeTestLogWriter.cpp 147 static const char* getImageCompressionName (ri::Image::Compression compression)
149 switch (compression)
272 << Writer::Attribute("CompressionMode", getImageCompressionName(image.compression))
  /external/protobuf/
configure.ac 116 AC_DEFINE([HAVE_ZLIB], [1], [Enable classes using zlib compression.])
  /external/protobuf/util/
configure.ac 116 AC_DEFINE([HAVE_ZLIB], [1], [Enable classes using zlib compression.])
  /external/tensorflow/tensorflow/core/kernels/
summary_image_op.cc 164 const int compression = -1; // Use zlib default local
166 image.data(), w, h, w * depth, depth, channel_bits, compression,
  /prebuilts/go/darwin-x86/src/archive/zip/
example_test.go 79 // Override the default Deflate compressor with a higher compression level.
struct.go 28 // Compression methods.
30 Store uint16 = 0 // no compression
106 // Method is the compression method. If zero, Store is used.
158 // If compression is desired, callers should set the FileHeader.Method
  /prebuilts/go/linux-x86/src/archive/zip/
example_test.go 79 // Override the default Deflate compressor with a higher compression level.
  /external/libpng/
example.c     [all...]
  /external/syslinux/com32/lib/libpng/
example.c 675 text_ptr[0].compression = PNG_TEXT_COMPRESSION_NONE;
678 text_ptr[1].compression = PNG_TEXT_COMPRESSION_NONE;
681 text_ptr[2].compression = PNG_TEXT_COMPRESSION_zTXt;
710 /* Once we write out the header, the compression type on the text
pngwutil.c 176 png_charp text, png_size_t text_len, int compression,
188 if (compression == PNG_TEXT_COMPRESSION_NONE)
195 if (compression >= PNG_TEXT_COMPRESSION_LAST)
199 png_snprintf(msg, 50, "Unknown compression type %d", compression);
202 png_warning(png_ptr, "Unknown compression type");
221 /* Set up the compression buffers */
227 /* This is the same compression loop as in png_write_row() */
283 /* Finish the compression */
357 /* Handle the no-compression case *
    [all...]
  /prebuilts/go/darwin-x86/src/compress/gzip/
gzip.go 54 // NewWriterLevel is like NewWriter but specifies the compression level instead
57 // The compression level can be DefaultCompression, NoCompression, HuffmanOnly
62 return nil, fmt.Errorf("gzip: invalid compression level: %d", level)
  /prebuilts/go/linux-x86/src/compress/gzip/
gzip.go 54 // NewWriterLevel is like NewWriter but specifies the compression level instead
57 // The compression level can be DefaultCompression, NoCompression, HuffmanOnly
62 return nil, fmt.Errorf("gzip: invalid compression level: %d", level)
  /external/python/cpython3/Lib/
zipfile.py 23 import zlib # We may need its compression method
30 import bz2 # We may need its compression method
35 import lzma # We may need its compression method
60 # constants for Zip file compression methods
65 # Other ZIP compression methods not supported
341 self.compress_type = ZIP_STORED # Type of compression for the file
641 def _check_compression(compression):
642 if compression == ZIP_STORED:
644 elif compression == ZIP_DEFLATED:
647 "Compression requires the (missing) zlib module"
    [all...]
  /prebuilts/go/darwin-x86/src/compress/flate/
deflate.go 22 // that lacks an entropy encoder. Compression gains are achieved when
86 // compression algorithm
603 return fmt.Errorf("flate: invalid compression level %d: want value in range [-2, 9]", level)
657 // (NoCompression) does not attempt any compression; it only adds the
659 // Level -1 (DefaultCompression) uses the default compression level.
660 // Level -2 (HuffmanOnly) will use Huffman compression only, giving
661 // a very fast compression for all types of input, but sacrificing considerable
662 // compression efficiency.
  /prebuilts/go/linux-x86/src/compress/flate/
deflate.go 22 // that lacks an entropy encoder. Compression gains are achieved when
86 // compression algorithm
603 return fmt.Errorf("flate: invalid compression level %d: want value in range [-2, 9]", level)
657 // (NoCompression) does not attempt any compression; it only adds the
659 // Level -1 (DefaultCompression) uses the default compression level.
660 // Level -2 (HuffmanOnly) will use Huffman compression only, giving
661 // a very fast compression for all types of input, but sacrificing considerable
662 // compression efficiency.
  /frameworks/av/media/extractors/mkv/
MatroskaExtractor.cpp 1357 const mkvparser::ContentEncoding::ContentCompression *compression; local
    [all...]
  /external/scapy/scapy/layers/tls/
session.py 20 from scapy.layers.tls.crypto.compression import Comp_NULL
37 Protocol. It specifies a compression algorithm, an encryption
51 specifies that no encryption, compression, or MAC will be used.
93 self.compression = compression_alg()
258 compression_alg=type(self.compression),
276 res += "Compression : %s (0x%02x)\n" % (self.compression.name,
277 self.compression.val)
    [all...]
record.py 31 from scapy.layers.tls.crypto.compression import Comp_NULL
372 alg = self.tls_session.rcs.compression
536 alg = self.tls_session.wcs.compression
612 # Compression
614 l = len(cfrag) # Update the length as a result of compression
  /build/soong/zip/
zip.go 42 // Block size used during parallel compression of a single file.
45 // Minimum file size to use parallel compression. It requires more
50 // Size of the ZIP compression window (32KB)
312 // compression time, but still cost some IO. Similar with small files that
447 // imports (possibly with compression) <src> into the zip at sub-path <dest>
556 // than the compression. Due to the Go Zip API, we also need to
  /external/tensorflow/tensorflow/core/lib/io/
table_test.cc 551 options.compression = kNoCompression;
575 fprintf(stderr, "skipping compression tests\n");
591 options.compression = kSnappyCompression;
613 options.compression = kNoCompression;

Completed in 865 milliseconds

1 2 3 4 56 7 8 91011>>