Lines Matching refs:readInt

1854     readInt: function(size) {  method in DataReader
1901 var dostime = this.readInt(4);
3589 this.diskNumber = this.reader.readInt(2);
3590 this.diskWithCentralDirStart = this.reader.readInt(2);
3591 this.centralDirRecordsOnThisDisk = this.reader.readInt(2);
3592 this.centralDirRecords = this.reader.readInt(2);
3593 this.centralDirSize = this.reader.readInt(4);
3594 this.centralDirOffset = this.reader.readInt(4);
3596 this.zipCommentLength = this.reader.readInt(2);
3614 this.zip64EndOfCentralSize = this.reader.readInt(8);
3618 this.diskNumber = this.reader.readInt(4);
3619 this.diskWithCentralDirStart = this.reader.readInt(4);
3620 this.centralDirRecordsOnThisDisk = this.reader.readInt(8);
3621 this.centralDirRecords = this.reader.readInt(8);
3622 this.centralDirSize = this.reader.readInt(8);
3623 this.centralDirOffset = this.reader.readInt(8);
3632 extraFieldId = this.reader.readInt(2);
3633 extraFieldLength = this.reader.readInt(4);
3646 this.diskWithZip64CentralDirStart = this.reader.readInt(4);
3647 this.relativeOffsetEndOfZip64CentralDir = this.reader.readInt(8);
3648 this.disksCount = this.reader.readInt(4);
3886 this.fileNameLength = reader.readInt(2);
3887 …localExtraFieldsLength = reader.readInt(2); // can't be sure this will be the same as the central …
3908 this.versionMadeBy = reader.readInt(2);
3911 this.bitFlag = reader.readInt(2);
3914 this.crc32 = reader.readInt(4);
3915 this.compressedSize = reader.readInt(4);
3916 this.uncompressedSize = reader.readInt(4);
3917 var fileNameLength = reader.readInt(2);
3918 this.extraFieldsLength = reader.readInt(2);
3919 this.fileCommentLength = reader.readInt(2);
3920 this.diskNumberStart = reader.readInt(2);
3921 this.internalFileAttributes = reader.readInt(2);
3922 this.externalFileAttributes = reader.readInt(4);
3923 this.localHeaderOffset = reader.readInt(4);
3980 this.uncompressedSize = extraReader.readInt(8);
3983 this.compressedSize = extraReader.readInt(8);
3986 this.localHeaderOffset = extraReader.readInt(8);
3989 this.diskNumberStart = extraReader.readInt(4);
4007 extraFieldId = reader.readInt(2);
4008 extraFieldLength = reader.readInt(2);
4059 if (extraReader.readInt(1) !== 1) {
4064 if (crc32fn(this.fileName) !== extraReader.readInt(4)) {
4083 if (extraReader.readInt(1) !== 1) {
4088 if (crc32fn(this.fileComment) !== extraReader.readInt(4)) {