var hash/crc32.IEEETable

10 uses

	hash/crc32 (current package)
		crc32.go#L102: var IEEETable = simpleMakeTable(IEEE)
		crc32.go#L128: 		return IEEETable
		crc32.go#L149: 	if tab == IEEETable {
		crc32.go#L160: func NewIEEE() hash.Hash32 { return New(IEEETable) }
		crc32.go#L199: 	case tab == IEEETable:

	compress/gzip
		gunzip.go#L157: 			z.digest = crc32.Update(z.digest, crc32.IEEETable, z.buf[:i+1])
		gunzip.go#L202: 		z.digest = crc32.Update(z.digest, crc32.IEEETable, z.buf[:2])
		gunzip.go#L207: 		z.digest = crc32.Update(z.digest, crc32.IEEETable, data)
		gunzip.go#L253: 		z.digest = crc32.Update(z.digest, crc32.IEEETable, p[:n])
		gzip.go#L195: 	z.digest = crc32.Update(z.digest, crc32.IEEETable, p)