Lines Matching refs:uncompressedSize
138 function CompressedObject(compressedSize, uncompressedSize, crc32, compression, data) { argument
140 this.uncompressedSize = uncompressedSize;
158 if (this.streamInfo["data_length"] !== that.uncompressedSize) {
171 .withStreamInfo("uncompressedSize", this.uncompressedSize)
515 uncompressedSize : 0 property in AnonymousFunctione744f5d00100.AnonymousFunctione744f5d00b00.generateZipParts.dataInfo
523 dataInfo.uncompressedSize = streamInfo["uncompressedSize"];
633 header += decToHex(dataInfo.uncompressedSize, 4);
1402 var isCompressedEmpty = (data instanceof CompressedObject) && data.uncompressedSize === 0;
3892 if (this.compressedSize === -1 || this.uncompressedSize === -1) {
3900 …this.decompressed = new CompressedObject(this.compressedSize, this.uncompressedSize, this.crc32, c…
3916 this.uncompressedSize = reader.readInt(4);
3979 if (this.uncompressedSize === utils.MAX_VALUE_32BITS) {
3980 this.uncompressedSize = extraReader.readInt(8);