func bytes.Clone

8 uses

	bytes (current package)
		bytes.go#L1365: func Clone(b []byte) []byte {

	bufio
		bufio.go#L464: 		buf := bytes.Clone(frag)

	crypto/cipher
		cbc.go#L31: 		iv:        bytes.Clone(iv),
		ctr.go#L52: 		ctr:     bytes.Clone(iv),

	crypto/ecdsa
		ecdsa.go#L394: 			hash = bytes.Clone(hash)

	crypto/ed25519
		ed25519.go#L76: 	return bytes.Clone(priv[:SeedSize])

	net/textproto
		reader.go#L47: 		line = bytes.Clone(line)
		reader.go#L114: 		line = bytes.Clone(line)