encoding/binary.bigEndian.PutUint64 (method)
37 uses
encoding/binary (current package)
binary.go#L130: func (bigEndian) PutUint64(b []byte, v uint64) {
encoding/base64
base64.go#L494: binary.BigEndian.PutUint64(dst[n:], dn)
encoding/gob
encode.go#L113: binary.BigEndian.PutUint64(state.buf[1:], x)
crypto/cipher
gcm.go#L405: binary.BigEndian.PutUint64(counter[:8], y.low)
gcm.go#L406: binary.BigEndian.PutUint64(counter[8:], y.high)
gcm.go#L422: binary.BigEndian.PutUint64(out, y.low)
gcm.go#L423: binary.BigEndian.PutUint64(out[8:], y.high)
crypto/des
block.go#L35: binary.BigEndian.PutUint64(dst, permuteFinalBlock(preOutput))
cipher.go#L119: binary.BigEndian.PutUint64(dst, permuteFinalBlock(preOutput))
cipher.go#L154: binary.BigEndian.PutUint64(dst, permuteFinalBlock(preOutput))
crypto/md5
md5.go#L92: binary.BigEndian.PutUint64(a[:], x)
crypto/rand
rand_unix.go#L153: binary.BigEndian.PutUint64(r.time[:], uint64(ns))
crypto/sha1
sha1.go#L85: binary.BigEndian.PutUint64(a[:], x)
sha1.go#L174: binary.BigEndian.PutUint64(tmp[:], len)
crypto/sha256
sha256.go#L110: binary.BigEndian.PutUint64(a[:], x)
sha256.go#L230: binary.BigEndian.PutUint64(tmp[:], len)
crypto/sha512
sha512.go#L201: binary.BigEndian.PutUint64(a[:], x)
sha512.go#L308: binary.BigEndian.PutUint64(tmp[0:], 0) // upper 64 bits are always zero, because len variable has type uint64
sha512.go#L309: binary.BigEndian.PutUint64(tmp[8:], len)
sha512.go#L317: binary.BigEndian.PutUint64(digest[0:], d.h[0])
sha512.go#L318: binary.BigEndian.PutUint64(digest[8:], d.h[1])
sha512.go#L319: binary.BigEndian.PutUint64(digest[16:], d.h[2])
sha512.go#L320: binary.BigEndian.PutUint64(digest[24:], d.h[3])
sha512.go#L321: binary.BigEndian.PutUint64(digest[32:], d.h[4])
sha512.go#L322: binary.BigEndian.PutUint64(digest[40:], d.h[5])
sha512.go#L324: binary.BigEndian.PutUint64(digest[48:], d.h[6])
sha512.go#L325: binary.BigEndian.PutUint64(digest[56:], d.h[7])
github.com/jackc/pgio
write.go#L22: binary.BigEndian.PutUint64(buf[wp:], n)
github.com/jackc/pgproto3/v2
big_endian.go#L35: binary.BigEndian.PutUint64(buf, uint64(n))
golang.org/x/crypto/openpgp/packet
encrypted_key.go#L144: binary.BigEndian.PutUint64(buf[1:9], pub.KeyId)
one_pass_signature.go#L63: binary.BigEndian.PutUint64(buf[4:12], ops.KeyId)
signature.go#L677: binary.BigEndian.PutUint64(keyId, *sig.IssuerKeyId)
signature_v3.go#L116: binary.BigEndian.PutUint64(buf[:8], sig.IssuerKeyId)
golang.org/x/crypto/ssh
messages.go#L691: binary.BigEndian.PutUint64(to, n)
golang.org/x/exp/rand
rng.go#L78: binary.BigEndian.PutUint64(buf[:8], pcg.high)
rng.go#L79: binary.BigEndian.PutUint64(buf[8:], pcg.low)
google.golang.org/api/transport/http/internal/propagation
http.go#L67: binary.BigEndian.PutUint64(sc.SpanID[:], sid)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |