Lines Matching refs:uncompressedSize
50864 function CompressedObject(compressedSize, uncompressedSize, crc32, compression, data) {
50866 this.uncompressedSize = uncompressedSize;
50881 if (this.streamInfo['data_length'] !== that.uncompressedSize) {
50893 …Size", this.compressedSize).withStreamInfo("uncompressedSize", this.uncompressedSize).withStreamIn…
51256 uncompressedSize: 0
51263 dataInfo.uncompressedSize = streamInfo['uncompressedSize'];
51361 header += decToHex(dataInfo.uncompressedSize, 4); // file name length
52142 var isCompressedEmpty = data instanceof CompressedObject && data.uncompressedSize === 0;
54861 if (this.compressedSize === -1 || this.uncompressedSize === -1) {
54872 …this.decompressed = new CompressedObject(this.compressedSize, this.uncompressedSize, this.crc32, c…
54888 this.uncompressedSize = reader.readInt(4);
54948 if (this.uncompressedSize === utils.MAX_VALUE_32BITS) {
54949 this.uncompressedSize = extraReader.readInt(8);