type hash/crc32.Table

15 uses

	hash/crc32 (current package)
		crc32.go#L44: type Table [256]uint32
		crc32.go#L78: var castagnoliTable *Table
		crc32.go#L124: func MakeTable(poly uint32) *Table {
		crc32.go#L140: 	tab *Table
		crc32.go#L148: func New(tab *Table) hash.Hash32 {
		crc32.go#L195: func update(crc uint32, tab *Table, p []byte, checkInitIEEE bool) uint32 {
		crc32.go#L210: func Update(crc uint32, tab *Table, p []byte) uint32 {
		crc32.go#L232: func Checksum(data []byte, tab *Table) uint32 { return Update(0, tab, data) }
		crc32.go#L242: func tableSum(t *Table) uint32 {
		crc32_amd64.go#L44: type sse42Table [4]Table
		crc32_generic.go#L20: func simpleMakeTable(poly uint32) *Table {
		crc32_generic.go#L21: 	t := new(Table)
		crc32_generic.go#L28: func simplePopulateTable(poly uint32, t *Table) {
		crc32_generic.go#L44: func simpleUpdate(crc uint32, tab *Table, p []byte) uint32 {
		crc32_generic.go#L56: type slicing8Table [8]Table