Home
last modified time | relevance | path

Searched refs:_compressedSize (Results 1 – 24 of 24) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Compression/src/System/IO/Compression/
H A DZipArchiveEntry.cs30 private long _compressedSize; field in System.IO.Compression.ZipArchiveEntry
64 _compressedSize = cd.CompressedSize; in ZipArchiveEntry()
111 _compressedSize = 0; // we don't know these yet in ZipArchiveEntry()
160 return _compressedSize;
474 compressedSizeTruncated = (uint)_compressedSize; in WriteCentralDirectoryFileHeader()
753 if (_compressedSize > int.MaxValue) in IsOpenable()
789 Debug.Assert(_compressedSize == 0); in WriteLocalFileHeader()
975 writer.Write(_compressedSize); in WriteCrcAndSizesInLocalHeader()
989 writer.Write(_compressedSize); in WriteCrcAndSizesInLocalHeader()
1005 writer.Write(_compressedSize); in WriteDataDescriptor()
[all …]
H A DZipBlocks.cs98 private long? _compressedSize; field
111 get { return _compressedSize; }
112 set { _compressedSize = value; UpdateSize(); }
125 if (_compressedSize != null) _size += 8; in UpdateSize()
164 zip64Field._compressedSize = null; in GetJustZip64Block()
179 zip64Block._compressedSize = null; in TryGetZip64BlockFromGenericExtraField()
210 if (readCompressedSize) zip64Block._compressedSize = reader.ReadInt64(); in TryGetZip64BlockFromGenericExtraField()
216 … if (zip64Block._compressedSize < 0) throw new InvalidDataException(SR.FieldTooBigCompressedSize); in TryGetZip64BlockFromGenericExtraField()
236 zip64Field._compressedSize = null; in GetAndRemoveZip64Block()
283 if (_compressedSize != null) writer.Write(_compressedSize.Value); in WriteBlock()
/dports/devel/spark/spark-2.1.1/sql/core/src/main/scala/org/apache/spark/sql/execution/columnar/compression/
H A DcompressionSchemes.scala86 private var _compressedSize = 0
94 override def compressedSize: Int = _compressedSize
104 _compressedSize += actualSize + 4
109 _compressedSize += actualSize + 4
389 protected var _compressedSize: Int = 0
392 override def compressedSize: Int = _compressedSize
401 _compressedSize += 1
406 _compressedSize += INT.defaultSize
469 protected var _compressedSize: Int = 0
481 _compressedSize += 1
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/mads/
H A Dcompression.cpp71 _items[i]._compressedSize = READ_LE_UINT32(header + 6); in initialize()
73 byte *sourceData = new byte[_items[i]._compressedSize]; in initialize()
74 stream->read(sourceData, _items[i]._compressedSize); in initialize()
87 fab.decompress(sourceData, _items[i]._compressedSize, _items[i]._data, _items[i]._size); in initialize()
H A Dcompression.h42 uint32 _compressedSize; member
/dports/games/scummvm/scummvm-2.5.1/engines/mads/
H A Dcompression.cpp71 _items[i]._compressedSize = READ_LE_UINT32(header + 6); in initialize()
73 byte *sourceData = new byte[_items[i]._compressedSize]; in initialize()
74 stream->read(sourceData, _items[i]._compressedSize); in initialize()
87 fab.decompress(sourceData, _items[i]._compressedSize, _items[i]._data, _items[i]._size); in initialize()
H A Dcompression.h40 uint32 _compressedSize; member
/dports/devel/poco/poco-1.10.1-all/Zip/include/Poco/Zip/
H A DZipFileInfo.h206 Poco::UInt64 _compressedSize; variable
278 return _compressedSize; in getCompressedSize()
389 …return _localHeaderOffset >= ZipCommon::ZIP64_MAGIC || _compressedSize >= ZipCommon::ZIP64_MAGIC |… in needsZip64()
405 if (_compressedSize >= ZipCommon::ZIP64_MAGIC) in setZip64Data()
407 ZipUtil::set64BitValue(_compressedSize, data, pos); pos += 8; in setZip64Data()
436 _compressedSize = val; in setCompressedSize()
H A DZipLocalFileHeader.h206 Poco::UInt64 _compressedSize; variable
258 …return _forceZip64 || _startPos >= ZipCommon::ZIP64_MAGIC || _compressedSize >= ZipCommon::ZIP64_M… in needsZip64()
270 ZipUtil::set64BitValue(_compressedSize, data, pos); pos += 8; in setZip64Data()
412 return _compressedSize; in getCompressedSize()
431 _compressedSize = val; in setCompressedSize()
/dports/devel/poco/poco-1.10.1-all/Zip/src/
H A DZipLocalFileHeader.cpp44 _compressedSize(0), in ZipLocalFileHeader()
66 _compressedSize(0), in ZipLocalFileHeader()
105 _endPos = _startPos + getHeaderSize() + _compressedSize; // exclude the data block! in ZipLocalFileHeader()
146 _compressedSize = getCompressedSizeFromHeader(); in parse()
H A DZipFileInfo.cpp32 _compressedSize(0), in ZipFileInfo()
65 _compressedSize(0), in ZipFileInfo()
101 _compressedSize = getCompressedSizeFromHeader(); in parse()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/include/doomsday/filesys/
H A Dfileinfo.h54 size_t _size = 0, size_t _compressedSize = 0)
56 size(_size), compressedSize(_compressedSize) in lastModified()
/dports/lang/gcc11/gcc-11.2.0/libphobos/src/std/
H A Dzip.d117 private uint _compressedSize; variable
135 @property uint compressedSize() { return _compressedSize; } in compressedSize()
155 _compressedSize = 0; in expandedData()
250 if (_compressedSize > 0) in compressionMethod()
389 de._compressedSize = to!uint(de._compressedData.length); in addMember()
393 assert(de._compressedData.length == de._compressedSize); in addMember()
690 de._compressedSize = getUint(i + 20); in this()
743 de._compressedSize = max(getUint(de.offset + 18), de.compressedSize); in expand()
/dports/lang/gcc10/gcc-10.3.0/libphobos/src/std/
H A Dzip.d117 private uint _compressedSize; variable
135 @property uint compressedSize() { return _compressedSize; } in compressedSize()
155 _compressedSize = 0; in expandedData()
250 if (_compressedSize > 0) in compressionMethod()
389 de._compressedSize = to!uint(de._compressedData.length); in addMember()
393 assert(de._compressedData.length == de._compressedSize); in addMember()
690 de._compressedSize = getUint(i + 20); in this()
743 de._compressedSize = max(getUint(de.offset + 18), de.compressedSize); in expand()
/dports/lang/gcc11-devel/gcc-11-20211009/libphobos/src/std/
H A Dzip.d117 private uint _compressedSize; variable
135 @property uint compressedSize() { return _compressedSize; } in compressedSize()
155 _compressedSize = 0; in expandedData()
250 if (_compressedSize > 0) in compressionMethod()
389 de._compressedSize = to!uint(de._compressedData.length); in addMember()
393 assert(de._compressedData.length == de._compressedSize); in addMember()
690 de._compressedSize = getUint(i + 20); in this()
743 de._compressedSize = max(getUint(de.offset + 18), de.compressedSize); in expand()
/dports/devel/avr-gcc/gcc-10.2.0/libphobos/src/std/
H A Dzip.d117 private uint _compressedSize; variable
135 @property uint compressedSize() { return _compressedSize; } in compressedSize()
155 _compressedSize = 0; in expandedData()
250 if (_compressedSize > 0) in compressionMethod()
389 de._compressedSize = to!uint(de._compressedData.length); in addMember()
393 assert(de._compressedData.length == de._compressedSize); in addMember()
690 de._compressedSize = getUint(i + 20); in this()
743 de._compressedSize = max(getUint(de.offset + 18), de.compressedSize); in expand()
/dports/lang/gcc9-devel/gcc-9-20211007/libphobos/src/std/
H A Dzip.d117 private uint _compressedSize; variable
135 @property uint compressedSize() { return _compressedSize; } in compressedSize()
155 _compressedSize = 0; in expandedData()
250 if (_compressedSize > 0) in compressionMethod()
389 de._compressedSize = to!uint(de._compressedData.length); in addMember()
393 assert(de._compressedData.length == de._compressedSize); in addMember()
690 de._compressedSize = getUint(i + 20); in this()
743 de._compressedSize = max(getUint(de.offset + 18), de.compressedSize); in expand()
/dports/lang/gcc9/gcc-9.4.0/libphobos/src/std/
H A Dzip.d117 private uint _compressedSize; variable
135 @property uint compressedSize() { return _compressedSize; } in compressedSize()
155 _compressedSize = 0; in expandedData()
250 if (_compressedSize > 0) in compressionMethod()
389 de._compressedSize = to!uint(de._compressedData.length); in addMember()
393 assert(de._compressedData.length == de._compressedSize); in addMember()
690 de._compressedSize = getUint(i + 20); in this()
743 de._compressedSize = max(getUint(de.offset + 18), de.compressedSize); in expand()
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libphobos/src/std/
H A Dzip.d117 private uint _compressedSize; variable
135 @property uint compressedSize() { return _compressedSize; } in compressedSize()
155 _compressedSize = 0; in expandedData()
250 if (_compressedSize > 0) in compressionMethod()
389 de._compressedSize = to!uint(de._compressedData.length); in addMember()
393 assert(de._compressedData.length == de._compressedSize); in addMember()
690 de._compressedSize = getUint(i + 20); in this()
743 de._compressedSize = max(getUint(de.offset + 18), de.compressedSize); in expand()
/dports/lang/gcc10-devel/gcc-10-20211008/libphobos/src/std/
H A Dzip.d117 private uint _compressedSize; variable
135 @property uint compressedSize() { return _compressedSize; } in compressedSize()
155 _compressedSize = 0; in expandedData()
250 if (_compressedSize > 0) in compressionMethod()
389 de._compressedSize = to!uint(de._compressedData.length); in addMember()
393 assert(de._compressedData.length == de._compressedSize); in addMember()
690 de._compressedSize = getUint(i + 20); in this()
743 de._compressedSize = max(getUint(de.offset + 18), de.compressedSize); in expand()
/dports/lang/gcc9-aux/gcc-9.1.0/libphobos/src/std/
H A Dzip.d117 private uint _compressedSize; variable
135 @property uint compressedSize() { return _compressedSize; } in compressedSize()
155 _compressedSize = 0; in expandedData()
250 if (_compressedSize > 0) in compressionMethod()
389 de._compressedSize = to!uint(de._compressedData.length); in addMember()
393 assert(de._compressedData.length == de._compressedSize); in addMember()
690 de._compressedSize = getUint(i + 20); in this()
743 de._compressedSize = max(getUint(de.offset + 18), de.compressedSize); in expand()
/dports/lang/gcc12-devel/gcc-12-20211205/libphobos/src/std/
H A Dzip.d172 private uint _compressedSize; variable
215 @property @safe pure nothrow @nogc uint compressedSize() const { return _compressedSize; } in compressedSize()
258 _compressedSize = 0; in expandedData()
363 …enforce!ZipException(_compressedSize == 0, "Can't change compression method for a compressed eleme… in compressionMethod()
411 am._compressedSize = 1;
583 de._compressedSize = to!uint(de._compressedData.length); in addMember()
587 … assert(de._compressedData.length == de._compressedSize, "Archive member compressed failed."); in addMember()
918 de._compressedSize = getUint(i + 20); in this()
947 + localFileHeaderExtralen + de._compressedSize); in this()
1231 de._compressedSize = max(getUint(de.offset + 18), de.compressedSize); in expand()
/dports/games/openlierox/OpenLieroX/include/
H A DFileDownload.h232 …StatInfo( const std::string & _filename="", uint _size=0, uint _compressedSize=0, uint _checksum=0…
233 filename(_filename), size(_size), compressedSize(_compressedSize), checksum(_checksum) {}; in filename()
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/air/ApplicationUpdater/src/ApplicationUpdater/air/update/core/
H A DUCFUnpackager.as304 _compressedSize = _currentLFH.readUnsignedInt();
395 var sizeToRead : uint = ( _compressionMethod == 8 ? _compressedSize : _uncompressedSize );
588 private var _compressedSize : uint;