Home
last modified time | relevance | path

Searched refs:compresslevel (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dbz2module.c1372 int compresslevel = 9; in BZ2File_init() local
1380 &compresslevel)) in BZ2File_init()
1383 if (compresslevel < 1 || compresslevel > 9) { in BZ2File_init()
1453 compresslevel, 0, 0); in BZ2File_init()
1774 int compresslevel = 9; in BZ2Comp_init() local
1779 kwlist, &compresslevel)) in BZ2Comp_init()
1782 if (compresslevel < 1 || compresslevel > 9) { in BZ2Comp_init()
1797 bzerror = BZ2_bzCompressInit(&self->bzs, compresslevel, 0, 0); in BZ2Comp_init()
2124 int compresslevel=9; in bz2_compress() local
2137 &compresslevel)) in bz2_compress()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dgzip.py27 def open(filename, mode="rb", compresslevel=9): argument
34 return GzipFile(filename, mode, compresslevel)
46 compresslevel=9, fileobj=None, mtime=None): argument
114 self.compress = zlib.compressobj(compresslevel,
Dtarfile.py1706 def gzopen(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs): argument
1724 gzip.GzipFile(name, mode, compresslevel, fileobj),
1732 def bz2open(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs): argument
1747 fileobj = bz2.BZ2File(name, mode, compresslevel=compresslevel)
Dxmlrpclib.py1155 gzf = gzip.GzipFile(mode="wb", fileobj=f, compresslevel=1)