func bytes.Repeat

6 uses

	bytes (current package)
		bytes.go#L639: func Repeat(b []byte, count int) []byte {

	crypto/internal/fips140/ecdsa
		hmacdrbg.go#L67: 	d.V = bytes.Repeat([]byte{0x01}, size)

	github.com/klauspost/compress/zstd
		dict.go#L441: 			huffBuff = append(huffBuff, bytes.Repeat([]byte{byte(i)}, n)...)
		dict.go#L467: 			huffBuff = append(huffBuff, bytes.Repeat([]byte{255}, 10000)...)
		dict.go#L479: 						huffBuff = append(huffBuff, bytes.Repeat([]byte{byte(i)}, n)...)
		dict.go#L497: 				huffBuff = append(huffBuff, bytes.Repeat([]byte{byte(i)}, n)...)