type hash/crc32.Table

15 uses

	hash/crc32 (current package)
		crc32.go#L43: type Table [256]uint32
		crc32.go#L77: var castagnoliTable *Table
		crc32.go#L123: func MakeTable(poly uint32) *Table {
		crc32.go#L139: 	tab *Table
		crc32.go#L147: func New(tab *Table) hash.Hash32 {
		crc32.go#L209: func update(crc uint32, tab *Table, p []byte, checkInitIEEE bool) uint32 {
		crc32.go#L224: func Update(crc uint32, tab *Table, p []byte) uint32 {
		crc32.go#L246: func Checksum(data []byte, tab *Table) uint32 { return Update(0, tab, data) }
		crc32.go#L256: func tableSum(t *Table) uint32 {
		crc32_amd64.go#L44: type sse42Table [4]Table
		crc32_generic.go#L18: func simpleMakeTable(poly uint32) *Table {
		crc32_generic.go#L19: 	t := new(Table)
		crc32_generic.go#L26: func simplePopulateTable(poly uint32, t *Table) {
		crc32_generic.go#L42: func simpleUpdate(crc uint32, tab *Table, p []byte) uint32 {
		crc32_generic.go#L54: type slicing8Table [8]Table