type archive/zip.readBuf

15 uses

	archive/zip (current package)
		reader.go#L255: 	b := readBuf(buf[:])
		reader.go#L273: 	b := readBuf(buf[:])
		reader.go#L329: 	for extra := readBuf(f.Extra); len(extra) >= 4; { // need at least tag and size
		reader.go#L455: 	maybeSig := readBuf(buf[:4])
		reader.go#L464: 	b := readBuf(buf[:12])
		reader.go#L501: 	b := readBuf(buf[4:]) // skip signature
		reader.go#L546: 	b := readBuf(buf)
		reader.go#L568: 	b := readBuf(buf)
		reader.go#L598: type readBuf []byte
		reader.go#L600: func (b *readBuf) uint8() uint8 {
		reader.go#L606: func (b *readBuf) uint16() uint16 {
		reader.go#L612: func (b *readBuf) uint32() uint32 {
		reader.go#L618: func (b *readBuf) uint64() uint64 {
		reader.go#L624: func (b *readBuf) sub(n int) readBuf {