func hash/crc32.ChecksumIEEE

7 uses

	hash/crc32 (current package)
		crc32.go#L243: func ChecksumIEEE(data []byte) uint32 {
		crc32.go#L257: 	return ChecksumIEEE(b)

	compress/gzip
		gunzip.go#L196: 	z.digest = crc32.ChecksumIEEE(z.buf[:10])

	github.com/gotd/td/proto/codec
		full.go#L64: 	crc := crc32.ChecksumIEEE(write.Raw())
		full.go#L112: 	clientCRC := crc32.ChecksumIEEE(b.Buf[0 : n-bin.Word])

	github.com/klauspost/compress/gzip
		gunzip.go#L201: 	z.digest = crc32.ChecksumIEEE(z.buf[:10])

	github.com/klauspost/compress/zstd
		blockdec.go#L443: 			println("huff table input:", len(literals), "CRC:", crc32.ChecksumIEEE(literals))