archive/zip.readBuf.uint64 (method)

10 uses

	archive/zip (current package)
		reader.go#L348: 				f.UncompressedSize64 = fieldBuf.uint64()
		reader.go#L355: 				f.CompressedSize64 = fieldBuf.uint64()
		reader.go#L362: 				f.headerOffset = int64(fieldBuf.uint64())
		reader.go#L381: 				ts := int64(attrBuf.uint64()) // ModTime since Windows epoch
		reader.go#L553: 	p := b.uint64()      // relative offset of the zip64 end of central directory record
		reader.go#L576: 	d.dirRecordsThisDisk = b.uint64() // total number of entries in the central directory on this disk
		reader.go#L577: 	d.directoryRecords = b.uint64()   // total number of entries in the central directory
		reader.go#L578: 	d.directorySize = b.uint64()      // size of the central directory
		reader.go#L579: 	d.directoryOffset = b.uint64()    // offset of start of central directory with respect to the starting disk number
		reader.go#L618: func (b *readBuf) uint64() uint64 {