func internal/byteorder.BeAppendUint32
21 uses
internal/byteorder (current package)
byteorder.go#L111: func BeAppendUint32(b []byte, v uint32) []byte {
crypto/md5
md5.go#L62: b = byteorder.BeAppendUint32(b, d.s[0])
md5.go#L63: b = byteorder.BeAppendUint32(b, d.s[1])
md5.go#L64: b = byteorder.BeAppendUint32(b, d.s[2])
md5.go#L65: b = byteorder.BeAppendUint32(b, d.s[3])
crypto/sha1
sha1.go#L54: b = byteorder.BeAppendUint32(b, d.h[0])
sha1.go#L55: b = byteorder.BeAppendUint32(b, d.h[1])
sha1.go#L56: b = byteorder.BeAppendUint32(b, d.h[2])
sha1.go#L57: b = byteorder.BeAppendUint32(b, d.h[3])
sha1.go#L58: b = byteorder.BeAppendUint32(b, d.h[4])
crypto/sha256
sha256.go#L73: b = byteorder.BeAppendUint32(b, d.h[0])
sha256.go#L74: b = byteorder.BeAppendUint32(b, d.h[1])
sha256.go#L75: b = byteorder.BeAppendUint32(b, d.h[2])
sha256.go#L76: b = byteorder.BeAppendUint32(b, d.h[3])
sha256.go#L77: b = byteorder.BeAppendUint32(b, d.h[4])
sha256.go#L78: b = byteorder.BeAppendUint32(b, d.h[5])
sha256.go#L79: b = byteorder.BeAppendUint32(b, d.h[6])
sha256.go#L80: b = byteorder.BeAppendUint32(b, d.h[7])
hash/crc32
crc32.go#L176: b = byteorder.BeAppendUint32(b, tableSum(d.tab))
crc32.go#L177: b = byteorder.BeAppendUint32(b, d.crc)
crc32.go#L247: b = byteorder.BeAppendUint32(b, x)
 |
The pages are generated with Golds v0.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |