func internal/byteorder.BEAppendUint64

8 uses

	internal/byteorder (current package)
		byteorder.go#L138: func BEAppendUint64(b []byte, v uint64) []byte {

	crypto/internal/fips140deps/byteorder
		byteorder.go#L54: 	return byteorder.BEAppendUint64(b, v)

	crypto/md5
		md5.go#L77: 	b = byteorder.BEAppendUint64(b, d.len)

	crypto/sha1
		sha1.go#L65: 	b = byteorder.BEAppendUint64(b, d.len)

	math/rand/v2
		pcg.go#L37: 	b = byteorder.BEAppendUint64(b, p.hi)
		pcg.go#L38: 	b = byteorder.BEAppendUint64(b, p.lo)

	net/netip
		netip.go#L1020: 		b = byteorder.BEAppendUint64(b, ip.addr.hi)
		netip.go#L1021: 		b = byteorder.BEAppendUint64(b, ip.addr.lo)