type hash/adler32.digest
14 uses
hash/adler32 (current package)
adler32.go#L34: type digest uint32
adler32.go#L36: func (d *digest) Reset() { *d = 1 }
adler32.go#L44: d := new(digest)
adler32.go#L49: func (d *digest) Size() int { return Size }
adler32.go#L51: func (d *digest) BlockSize() int { return 4 }
adler32.go#L58: func (d *digest) MarshalBinary() ([]byte, error) {
adler32.go#L65: func (d *digest) UnmarshalBinary(b []byte) error {
adler32.go#L72: *d = digest(readUint32(b[len(magic):]))
adler32.go#L92: func update(d digest, p []byte) digest {
adler32.go#L118: return digest(s2<<16 | s1)
adler32.go#L121: func (d *digest) Write(p []byte) (nn int, err error) {
adler32.go#L126: func (d *digest) Sum32() uint32 { return uint32(*d) }
adler32.go#L128: func (d *digest) Sum(in []byte) []byte {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |