func internal/byteorder.BePutUint64
28 uses
internal/byteorder (current package)
byteorder.go#L126: func BePutUint64(b []byte, v uint64) {
internal/chacha8rand
chacha8.go#L127: byteorder.BePutUint64(data[1*8:], uint64(used))
crypto/cipher
gcm.go#L404: byteorder.BePutUint64(counter[:8], y.low)
gcm.go#L405: byteorder.BePutUint64(counter[8:], y.high)
gcm.go#L421: byteorder.BePutUint64(out, y.low)
gcm.go#L422: byteorder.BePutUint64(out[8:], y.high)
crypto/des
block.go#L35: byteorder.BePutUint64(dst, permuteFinalBlock(preOutput))
cipher.go#L119: byteorder.BePutUint64(dst, permuteFinalBlock(preOutput))
cipher.go#L154: byteorder.BePutUint64(dst, permuteFinalBlock(preOutput))
crypto/sha1
sha1.go#L165: byteorder.BePutUint64(padlen[t:], len)
crypto/sha256
sha256.go#L224: byteorder.BePutUint64(padlen[t+0:], len)
crypto/sha512
sha512.go#L317: byteorder.BePutUint64(padlen[t+8:], len)
sha512.go#L325: byteorder.BePutUint64(digest[0:], d.h[0])
sha512.go#L326: byteorder.BePutUint64(digest[8:], d.h[1])
sha512.go#L327: byteorder.BePutUint64(digest[16:], d.h[2])
sha512.go#L328: byteorder.BePutUint64(digest[24:], d.h[3])
sha512.go#L329: byteorder.BePutUint64(digest[32:], d.h[4])
sha512.go#L330: byteorder.BePutUint64(digest[40:], d.h[5])
sha512.go#L332: byteorder.BePutUint64(digest[48:], d.h[6])
sha512.go#L333: byteorder.BePutUint64(digest[56:], d.h[7])
math/rand/v2
pcg.go#L38: byteorder.BePutUint64(b[4:], p.hi)
pcg.go#L39: byteorder.BePutUint64(b[4+8:], p.lo)
net/netip
netip.go#L703: byteorder.BePutUint64(a16[:8], ip.addr.hi)
netip.go#L704: byteorder.BePutUint64(a16[8:], ip.addr.lo)
netip.go#L733: byteorder.BePutUint64(ret[:8], ip.addr.hi)
netip.go#L734: byteorder.BePutUint64(ret[8:], ip.addr.lo)
netip.go#L1018: byteorder.BePutUint64(b[:8], ip.addr.hi)
netip.go#L1019: byteorder.BePutUint64(b[8:], ip.addr.lo)
 |
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. |