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/cipher
gcm.go#L140: byteorder.BeUint64(key[:8]),
gcm.go#L141: byteorder.BeUint64(key[8:]),
gcm.go#L324: y.low ^= byteorder.BeUint64(blocks)
gcm.go#L325: y.high ^= byteorder.BeUint64(blocks[8:])
crypto/des
block.go#L13: b := byteorder.BeUint64(src)
block.go#L221: key := byteorder.BeUint64(keyBytes)
cipher.go#L98: b := byteorder.BeUint64(src)
cipher.go#L133: b := byteorder.BeUint64(src)
crypto/internal/bigmod
nat.go#L173: return uint(byteorder.BeUint64(buf))
crypto/md5
md5.go#L91: return b[8:], byteorder.BeUint64(b[0:8])
crypto/sha1
sha1.go#L85: return b[8:], byteorder.BeUint64(b)
crypto/sha256
sha256.go#L110: return b[8:], byteorder.BeUint64(b)
crypto/sha512
sha512.go#L201: return b[8:], byteorder.BeUint64(b)
math/big
nat.go#L1324: return Word(byteorder.BeUint64(buf))
math/rand/v2
pcg.go#L50: p.hi = byteorder.BeUint64(data[4:])
pcg.go#L51: 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))
![]() |
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. |