Lines Matching refs:readInt

291     readInt: function(size) {  method in DataReader
330 var dostime = this.readInt(4);
2293 this.diskNumber = this.reader.readInt(2);
2294 this.diskWithCentralDirStart = this.reader.readInt(2);
2295 this.centralDirRecordsOnThisDisk = this.reader.readInt(2);
2296 this.centralDirRecords = this.reader.readInt(2);
2297 this.centralDirSize = this.reader.readInt(4);
2298 this.centralDirOffset = this.reader.readInt(4);
2300 this.zipCommentLength = this.reader.readInt(2);
2316 this.zip64EndOfCentralSize = this.reader.readInt(8);
2318 this.versionNeeded = this.reader.readInt(2);
2319 this.diskNumber = this.reader.readInt(4);
2320 this.diskWithCentralDirStart = this.reader.readInt(4);
2321 this.centralDirRecordsOnThisDisk = this.reader.readInt(8);
2322 this.centralDirRecords = this.reader.readInt(8);
2323 this.centralDirSize = this.reader.readInt(8);
2324 this.centralDirOffset = this.reader.readInt(8);
2333 extraFieldId = this.reader.readInt(2);
2334 extraFieldLength = this.reader.readInt(4);
2347 this.diskWithZip64CentralDirStart = this.reader.readInt(4);
2348 this.relativeOffsetEndOfZip64CentralDir = this.reader.readInt(8);
2349 this.disksCount = this.reader.readInt(4);
2577 this.fileNameLength = reader.readInt(2);
2578 …localExtraFieldsLength = reader.readInt(2); // can't be sure this will be the same as the central …
2612 this.versionMadeBy = reader.readInt(2);
2613 this.versionNeeded = reader.readInt(2);
2614 this.bitFlag = reader.readInt(2);
2617 this.crc32 = reader.readInt(4);
2618 this.compressedSize = reader.readInt(4);
2619 this.uncompressedSize = reader.readInt(4);
2620 this.fileNameLength = reader.readInt(2);
2621 this.extraFieldsLength = reader.readInt(2);
2622 this.fileCommentLength = reader.readInt(2);
2623 this.diskNumberStart = reader.readInt(2);
2624 this.internalFileAttributes = reader.readInt(2);
2625 this.externalFileAttributes = reader.readInt(4);
2626 this.localHeaderOffset = reader.readInt(4);
2683 this.uncompressedSize = extraReader.readInt(8);
2686 this.compressedSize = extraReader.readInt(8);
2689 this.localHeaderOffset = extraReader.readInt(8);
2692 this.diskNumberStart = extraReader.readInt(4);
2708 extraFieldId = reader.readInt(2);
2709 extraFieldLength = reader.readInt(2);
2748 if (extraReader.readInt(1) !== 1) {
2753 if (jszipProto.crc32(this.fileName) !== extraReader.readInt(4)) {
2772 if (extraReader.readInt(1) !== 1) {
2777 if (jszipProto.crc32(this.fileComment) !== extraReader.readInt(4)) {