Lines Matching refs:readInt

52634   readInt: function readInt(size) {
52685 var dostime = this.readInt(4);
54535 this.diskNumber = this.reader.readInt(2);
54536 this.diskWithCentralDirStart = this.reader.readInt(2);
54537 this.centralDirRecordsOnThisDisk = this.reader.readInt(2);
54538 this.centralDirRecords = this.reader.readInt(2);
54539 this.centralDirSize = this.reader.readInt(4);
54540 this.centralDirOffset = this.reader.readInt(4);
54541 …this.zipCommentLength = this.reader.readInt(2); // warning : the encoding depends of the system lo…
54560 this.zip64EndOfCentralSize = this.reader.readInt(8);
54564 this.diskNumber = this.reader.readInt(4);
54565 this.diskWithCentralDirStart = this.reader.readInt(4);
54566 this.centralDirRecordsOnThisDisk = this.reader.readInt(8);
54567 this.centralDirRecords = this.reader.readInt(8);
54568 this.centralDirSize = this.reader.readInt(8);
54569 this.centralDirOffset = this.reader.readInt(8);
54578 extraFieldId = this.reader.readInt(2);
54579 extraFieldLength = this.reader.readInt(4);
54593 this.diskWithZip64CentralDirStart = this.reader.readInt(4);
54594 this.relativeOffsetEndOfZip64CentralDir = this.reader.readInt(8);
54595 this.disksCount = this.reader.readInt(4);
54854 this.fileNameLength = reader.readInt(2);
54855 …localExtraFieldsLength = reader.readInt(2); // can't be sure this will be the same as the central …
54880 this.versionMadeBy = reader.readInt(2);
54883 this.bitFlag = reader.readInt(2);
54886 this.crc32 = reader.readInt(4);
54887 this.compressedSize = reader.readInt(4);
54888 this.uncompressedSize = reader.readInt(4);
54889 var fileNameLength = reader.readInt(2);
54890 this.extraFieldsLength = reader.readInt(2);
54891 this.fileCommentLength = reader.readInt(2);
54892 this.diskNumberStart = reader.readInt(2);
54893 this.internalFileAttributes = reader.readInt(2);
54894 this.externalFileAttributes = reader.readInt(4);
54895 this.localHeaderOffset = reader.readInt(4);
54949 this.uncompressedSize = extraReader.readInt(8);
54953 this.compressedSize = extraReader.readInt(8);
54957 this.localHeaderOffset = extraReader.readInt(8);
54961 this.diskNumberStart = extraReader.readInt(4);
54980 extraFieldId = reader.readInt(2);
54981 extraFieldLength = reader.readInt(2);
55035 if (extraReader.readInt(1) !== 1) {
55040 if (crc32fn(this.fileName) !== extraReader.readInt(4)) {
55060 if (extraReader.readInt(1) !== 1) {
55065 if (crc32fn(this.fileComment) !== extraReader.readInt(4)) {