archive/zip.writeBuf.uint32 (method)

28 uses

	archive/zip (current package)
		writer.go#L93: 		b.uint32(uint32(directoryHeaderSignature))
		writer.go#L100: 		b.uint32(h.CRC32)
		writer.go#L105: 			b.uint32(uint32max) // compressed size
		writer.go#L106: 			b.uint32(uint32max) // uncompressed size
		writer.go#L118: 			b.uint32(h.CompressedSize)
		writer.go#L119: 			b.uint32(h.UncompressedSize)
		writer.go#L126: 		b.uint32(h.ExternalAttrs)
		writer.go#L128: 			b.uint32(uint32max)
		writer.go#L130: 			b.uint32(uint32(h.offset))
		writer.go#L160: 		b.uint32(directory64EndSignature)
		writer.go#L164: 		b.uint32(0)                      // number of this disk
		writer.go#L165: 		b.uint32(0)                      // number of the disk with the start of the central directory
		writer.go#L172: 		b.uint32(directory64LocSignature)
		writer.go#L173: 		b.uint32(0)           // number of the disk with the start of the zip64 end of central directory
		writer.go#L175: 		b.uint32(1)           // total number of disks
		writer.go#L191: 	b.uint32(uint32(directoryEndSignature))
		writer.go#L195: 	b.uint32(uint32(size))           // size of directory
		writer.go#L196: 	b.uint32(uint32(offset))         // start of directory
		writer.go#L318: 		eb.uint32(mt) // ModTime
		writer.go#L387: 	b.uint32(uint32(fileHeaderSignature))
		writer.go#L393: 	b.uint32(0) // since we are writing a data descriptor crc32,
		writer.go#L394: 	b.uint32(0) // compressed size,
		writer.go#L395: 	b.uint32(0) // and uncompressed size should be zero
		writer.go#L489: 	b.uint32(dataDescriptorSignature) // de-facto standard, required by OS X
		writer.go#L490: 	b.uint32(fh.CRC32)
		writer.go#L495: 		b.uint32(fh.CompressedSize)
		writer.go#L496: 		b.uint32(fh.UncompressedSize)
		writer.go#L533: func (b *writeBuf) uint32(v uint32) {