func internal/byteorder.BEAppendUint32
19 uses
internal/byteorder (current package)
byteorder.go#L111: func BEAppendUint32(b []byte, v uint32) []byte {
crypto/internal/fips140deps/byteorder
byteorder.go#L48: return byteorder.BEAppendUint32(b, v)
crypto/md5
md5.go#L66: b = byteorder.BEAppendUint32(b, d.s[0])
md5.go#L67: b = byteorder.BEAppendUint32(b, d.s[1])
md5.go#L68: b = byteorder.BEAppendUint32(b, d.s[2])
md5.go#L69: 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/crc32
crc32.go#L173: b = byteorder.BEAppendUint32(b, tableSum(d.tab))
crc32.go#L174: b = byteorder.BEAppendUint32(b, d.crc)
crc32.go#L249: b = byteorder.BEAppendUint32(b, x)
hash/fnv
fnv.go#L182: return byteorder.BEAppendUint32(in, v)
fnv.go#L187: return byteorder.BEAppendUint32(in, v)
fnv.go#L224: b = byteorder.BEAppendUint32(b, uint32(*s))
fnv.go#L234: b = byteorder.BEAppendUint32(b, uint32(*s))
net/netip
netip.go#L1019: b = byteorder.BEAppendUint32(b, uint32(ip.addr.lo))