Lines Matching full:uint32
73 b.uint32(uint32(directoryHeaderSignature))
80 b.uint32(h.CRC32)
85 b.uint32(uint32max) // compressed size
86 b.uint32(uint32max) // uncompressed size
98 b.uint32(h.CompressedSize)
99 b.uint32(h.UncompressedSize)
105 b.uint32(h.ExternalAttrs)
107 b.uint32(uint32max)
109 b.uint32(uint32(h.offset))
135 b.uint32(directory64EndSignature)
136 b.uint64(directory64EndLen - 12) // length minus signature (uint32) and length fields (uint64)
139 b.uint32(0) // number of this disk
140 b.uint32(0) // number of the disk with the start of the central directory
147 b.uint32(directory64LocSignature)
148 b.uint32(0) // number of the disk with the start of the zip64 end of central directory
150 b.uint32(1) // total number of disks
166 b.uint32(uint32(directoryEndSignature))
170 b.uint32(uint32(size)) // size of directory
171 b.uint32(uint32(offset)) // start of directory
252 b.uint32(uint32(fileHeaderSignature))
258 b.uint32(0) // since we are writing a data descriptor crc32,
259 b.uint32(0) // compressed size,
260 b.uint32(0) // and uncompressed size should be zero
311 fh.CompressedSize = uint32(fh.CompressedSize64)
312 fh.UncompressedSize = uint32(fh.UncompressedSize64)
327 b.uint32(dataDescriptorSignature) // de-facto standard, required by OS X
328 b.uint32(fh.CRC32)
333 b.uint32(fh.CompressedSize)
334 b.uint32(fh.UncompressedSize)
366 func (b *writeBuf) uint32(v uint32) {