func bytes.Clone

10 uses

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

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

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

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

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

	crypto/x509
		oid.go#L185: 	return bytes.Clone(o.der), nil
		oid.go#L190: 	oid, ok := newOIDFromDER(bytes.Clone(b))

	net/textproto
		reader.go#L52: 		line = bytes.Clone(line)
		reader.go#L125: 		line = bytes.Clone(line)