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#L122: func MakeTable(poly uint32) *Table {
crc32.go#L138: tab *Table
crc32.go#L146: func New(tab *Table) hash.Hash32 {
crc32.go#L197: func update(crc uint32, tab *Table, p []byte, checkInitIEEE bool) uint32 {
crc32.go#L212: func Update(crc uint32, tab *Table, p []byte) uint32 {
crc32.go#L234: func Checksum(data []byte, tab *Table) uint32 { return Update(0, tab, data) }
crc32.go#L244: 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