archive/zip.writeBuf.uint64 (method)

12 uses

	archive/zip (current package)
		writer.go#L113: 			eb.uint64(h.UncompressedSize64)
		writer.go#L114: 			eb.uint64(h.CompressedSize64)
		writer.go#L115: 			eb.uint64(h.offset)
		writer.go#L161: 		b.uint64(directory64EndLen - 12) // length minus signature (uint32) and length fields (uint64)
		writer.go#L166: 		b.uint64(records)                // total number of entries in the central directory on this disk
		writer.go#L167: 		b.uint64(records)                // total number of entries in the central directory
		writer.go#L168: 		b.uint64(size)                   // size of the central directory
		writer.go#L169: 		b.uint64(offset)                 // offset of start of central directory with respect to the starting disk number
		writer.go#L174: 		b.uint64(uint64(end)) // relative offset of the zip64 end of central directory record
		writer.go#L492: 		b.uint64(fh.CompressedSize64)
		writer.go#L493: 		b.uint64(fh.UncompressedSize64)
		writer.go#L538: func (b *writeBuf) uint64(v uint64) {