archive/zip.readBuf.uint32 (method)

22 uses

	archive/zip (current package)
		reader.go#L256: 	if sig := b.uint32(); sig != fileHeaderSignature {
		reader.go#L274: 	if sig := b.uint32(); sig != directoryHeaderSignature {
		reader.go#L283: 	f.CRC32 = b.uint32()
		reader.go#L284: 	f.CompressedSize = b.uint32()
		reader.go#L285: 	f.UncompressedSize = b.uint32()
		reader.go#L292: 	f.ExternalAttrs = b.uint32()
		reader.go#L293: 	f.headerOffset = int64(b.uint32())
		reader.go#L368: 			fieldBuf.uint32()        // reserved (ignored)
		reader.go#L391: 			fieldBuf.uint32()              // AcTime (ignored)
		reader.go#L392: 			ts := int64(fieldBuf.uint32()) // ModTime since Unix epoch
		reader.go#L398: 			ts := int64(fieldBuf.uint32()) // ModTime since Unix epoch
		reader.go#L456: 	if maybeSig.uint32() != dataDescriptorSignature {
		reader.go#L465: 	if b.uint32() != f.CRC32 {
		reader.go#L507: 		directorySize:      uint64(b.uint32()),
		reader.go#L508: 		directoryOffset:    uint64(b.uint32()),
		reader.go#L547: 	if sig := b.uint32(); sig != directory64LocSignature {
		reader.go#L550: 	if b.uint32() != 0 { // number of the disk with the start of the zip64 end of central directory
		reader.go#L554: 	if b.uint32() != 1 { // total number of disks
		reader.go#L569: 	if sig := b.uint32(); sig != directory64EndSignature {
		reader.go#L574: 	d.diskNbr = b.uint32()            // number of this disk
		reader.go#L575: 	d.dirDiskNbr = b.uint32()         // number of the disk with the start of the central directory
		reader.go#L612: func (b *readBuf) uint32() uint32 {