func internal/byteorder.BEUint64

22 uses

	internal/byteorder (current package)
		byteorder.go#L120: func BEUint64(b []byte) uint64 {

	internal/chacha8rand
		chacha8.go#L145: 	used := byteorder.BEUint64(data[1*8:])

	crypto/des
		block.go#L13: 	b := byteorder.BEUint64(src)
		block.go#L221: 	key := byteorder.BEUint64(keyBytes)
		cipher.go#L108: 	b := byteorder.BEUint64(src)
		cipher.go#L143: 	b := byteorder.BEUint64(src)

	crypto/internal/fips140deps/byteorder
		byteorder.go#L20: 	return byteorder.BEUint64(b)

	crypto/md5
		md5.go#L95: 	return b[8:], byteorder.BEUint64(b[0:8])

	crypto/sha1
		sha1.go#L89: 	return b[8:], byteorder.BEUint64(b)

	hash/fnv
		fnv.go#L313: 	*s = sum64(byteorder.BEUint64(b[4:]))
		fnv.go#L324: 	*s = sum64a(byteorder.BEUint64(b[4:]))
		fnv.go#L335: 	s[0] = byteorder.BEUint64(b[4:])
		fnv.go#L336: 	s[1] = byteorder.BEUint64(b[12:])
		fnv.go#L347: 	s[0] = byteorder.BEUint64(b[4:])
		fnv.go#L348: 	s[1] = byteorder.BEUint64(b[12:])

	math/big
		nat.go#L1324: 		return Word(byteorder.BEUint64(buf))

	math/rand/v2
		pcg.go#L54: 	p.hi = byteorder.BEUint64(data[4:])
		pcg.go#L55: 	p.lo = byteorder.BEUint64(data[4+8:])

	net/netip
		netip.go#L105: 			byteorder.BEUint64(addr[:8]),
		netip.go#L106: 			byteorder.BEUint64(addr[8:]),

	os
		dir_unix.go#L182: 		return uint64(byteorder.BEUint64(b))

	syscall
		dirent.go#L36: 		return uint64(byteorder.BEUint64(b))