HomeSort by relevance Sort by last modified time
    Searched refs:compression (Results 76 - 100 of 190) sorted by null

1 2 34 5 6 7 8

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 64 the appropriate compression extension (".gz", ".bz2" or ".Z").
71 # flags for compression program, each element of list will be an argument
107 # compression using `compress`
163 compression=zipfile.ZIP_DEFLATED)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py 11 import zlib # We may need its compression method namespace
36 # constants for Zip file compression methods
39 # Other ZIP compression methods not supported
308 self.compress_type = ZIP_STORED # Type of compression for the file
530 raise NotImplementedError("compression type %d (%s)" % (self._compress_type, descr))
532 raise NotImplementedError("compression type %d" % (self._compress_type,))
708 z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=False)
713 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib).
722 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=False)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py 11 import zlib # We may need its compression method namespace
36 # constants for Zip file compression methods
39 # Other ZIP compression methods not supported
308 self.compress_type = ZIP_STORED # Type of compression for the file
530 raise NotImplementedError("compression type %d (%s)" % (self._compress_type, descr))
532 raise NotImplementedError("compression type %d" % (self._compress_type,))
708 z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=False)
713 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib).
722 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=False)
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlwriter.c 231 * @compression: compress the output?
238 xmlNewTextWriterFilename(const char *uri, int compression)
243 out = xmlOutputBufferCreateFilename(uri, NULL, compression);
266 * @compression: compress the output?
269 * TODO: handle compression
274 xmlNewTextWriterMemory(xmlBufferPtr buf, int compression ATTRIBUTE_UNUSED)
279 /*::todo handle compression */
302 * @compression: compress the output?
307 * TODO: handle compression
313 int compression ATTRIBUTE_UNUSED
    [all...]
c14n.c     [all...]
xmlsave.c 1662 int compression = 0; \/* TODO handle compression option *\/ local
    [all...]
  /external/libxml2/
xmlwriter.c 235 * @compression: compress the output?
242 xmlNewTextWriterFilename(const char *uri, int compression)
247 out = xmlOutputBufferCreateFilename(uri, NULL, compression);
270 * @compression: compress the output?
273 * TODO: handle compression
278 xmlNewTextWriterMemory(xmlBufferPtr buf, int compression ATTRIBUTE_UNUSED)
283 /*::todo handle compression */
306 * @compression: compress the output?
311 * TODO: handle compression
317 int compression ATTRIBUTE_UNUSED
    [all...]
c14n.c     [all...]
  /external/libpng/
pngwutil.c 258 unsigned int z_cmf = data[0]; /* zlib compression method and flags */
293 /* Initialize the compressor for the appropriate type of compression. */
438 /* Clean up (or trim) a linked list of compression buffers. */
487 /* Compress the data in the compression state input */
509 /* Set up the compression buffers, we need a loop here to avoid overflowing a
833 png_warning(png_ptr, "Invalid compression type specified");
1010 /* First time. Ensure we have a temporary buffer for compression and
    [all...]
pngtest.c 15 * the basic chunk handling, filtering, and (de)compression code is working
20 * 1) when the compression level or filter selection method is changed.
799 switch (text_ptr[--num_text].compression)
819 png_error(png_ptr, "invalid text chunk compression field");
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
sslinfo.c 9 ssl_GetCompressionMethodName(SSLCompressionMethod compression)
11 switch (compression) {
  /external/chromium_org/third_party/skia/tests/
PDFPrimitivesTest.cpp 74 bool indirect, bool compression) {
76 if (!compression) {
134 char streamBytes2[] = "This is a longer string, so that compression "
146 // Check first without compression.
156 // Then again with compression.
  /external/srec/config/en.us/
Android.mk 84 # the advancecomp suite of compression utilities. (On ubuntu,
  /build/tools/releasetools/
add_img_to_target_files 253 compression=zipfile.ZIP_DEFLATED)
add_img_to_target_files.py 253 compression=zipfile.ZIP_DEFLATED)
  /external/chromium_org/third_party/libxml/src/include/libxml/
globals.h 55 typedef xmlOutputBufferPtr (*xmlOutputBufferCreateFilenameFunc) (const char *URI, xmlCharEncodingHandlerPtr encoder, int compression);
  /external/libxml2/include/libxml/
globals.h 55 typedef xmlOutputBufferPtr (*xmlOutputBufferCreateFilenameFunc) (const char *URI, xmlCharEncodingHandlerPtr encoder, int compression);
  /external/deqp/executor/
xeTestResultParser.cpp 230 static ri::Image::Compression getImageCompression (const char* compression)
232 return (ri::Image::Compression)getEnumValue("image compression", s_compressionMap, DE_LENGTH_OF_ARRAY(s_compressionMap), compression);
532 image->compression = getImageCompression(getAttribute("CompressionMode"));
  /external/libpng/contrib/libtests/
makepng.c 978 text->compression = -1; /* none */
1046 text.compression = 0; /* deflate */
1058 text.compression = 2; /* iTXt + deflate */
    [all...]
  /external/chromium_org/tools/telemetry/third_party/png/
png.py 330 compression=None,
360 compression
361 zlib compression level: 0 (none) to 9 (more compressed); default: -1 or None.
429 The `compression` argument specifies the compression level to
431 compression, with 9 being "more compressed" (usually smaller
433 no compression. -1 and ``None`` both mean that the default
594 self.compression = compression
724 if self.compression is not None
    [all...]
  /external/chromium_org/third_party/mesa/src/docs/
MESA_texture_array.spec 686 S3TC texture compression is supported for two-dimensional array textures.
693 the three-dimensional compression format provided in the
699 S3TC compression is not supported for one-dimensional texture targets in
    [all...]
  /external/mesa3d/docs/
MESA_texture_array.spec 686 S3TC texture compression is supported for two-dimensional array textures.
693 the three-dimensional compression format provided in the
699 S3TC compression is not supported for one-dimensional texture targets in
    [all...]
  /external/chromium_org/third_party/libpng/
pngpread.c 929 png_warning(png_ptr, "Extra compression data");
    [all...]
  /external/qemu/distrib/libpng-1.2.46/
pngpread.c 929 png_warning(png_ptr, "Extra compression data");
    [all...]
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_database.cc 106 options.compression = leveldb::kSnappyCompression;

Completed in 1242 milliseconds

1 2 34 5 6 7 8