func internal/byteorder.BEAppendUint32
16 uses
internal/byteorder (current package)
byteorder.go#L111: func BEAppendUint32(b []byte, v uint32) []byte {
crypto/internal/fips140deps/byteorder
byteorder.go#L50: return byteorder.BEAppendUint32(b, v)
crypto/md5
md5.go#L71: b = byteorder.BEAppendUint32(b, d.s[0])
md5.go#L72: b = byteorder.BEAppendUint32(b, d.s[1])
md5.go#L73: b = byteorder.BEAppendUint32(b, d.s[2])
md5.go#L74: b = byteorder.BEAppendUint32(b, d.s[3])
crypto/sha1
sha1.go#L58: b = byteorder.BEAppendUint32(b, d.h[0])
sha1.go#L59: b = byteorder.BEAppendUint32(b, d.h[1])
sha1.go#L60: b = byteorder.BEAppendUint32(b, d.h[2])
sha1.go#L61: b = byteorder.BEAppendUint32(b, d.h[3])
sha1.go#L62: b = byteorder.BEAppendUint32(b, d.h[4])
hash/adler32
adler32.go#L62: b = byteorder.BEAppendUint32(b, uint32(*d))
hash/crc32
crc32.go#L173: b = byteorder.BEAppendUint32(b, tableSum(d.tab))
crc32.go#L174: b = byteorder.BEAppendUint32(b, d.crc)
crc32.go#L254: b = byteorder.BEAppendUint32(b, x)
net/netip
netip.go#L1018: b = byteorder.BEAppendUint32(b, uint32(ip.addr.lo))
 |
The pages are generated with Golds v0.8.4. (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. |