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
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |