func internal/byteorder.BEPutUint64

17 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#L328: 		byteorder.BEPutUint64(lenBlock[8:], uint64(len(nonce))*8)
		gcm.go#L358: 	byteorder.BEPutUint64(lenBlock[:8], uint64(len(additionalData))*8)
		gcm.go#L359: 	byteorder.BEPutUint64(lenBlock[8:], uint64(len(ciphertext))*8)

	crypto/des
		block.go#L35: 	byteorder.BEPutUint64(dst, permuteFinalBlock(preOutput))
		cipher.go#L129: 	byteorder.BEPutUint64(dst, permuteFinalBlock(preOutput))
		cipher.go#L164: 	byteorder.BEPutUint64(dst, permuteFinalBlock(preOutput))

	crypto/internal/fips140deps/byteorder
		byteorder.go#L36: 	byteorder.BEPutUint64(b, v)

	crypto/internal/hpke
		hpke.go#L330: 	byteorder.BEPutUint64(b[0:], u.hi)
		hpke.go#L331: 	byteorder.BEPutUint64(b[8:], u.lo)

	crypto/sha1
		sha1.go#L177: 	byteorder.BEPutUint64(padlen[t:], len)

	net/netip
		netip.go#L705: 	byteorder.BEPutUint64(a16[:8], ip.addr.hi)
		netip.go#L706: 	byteorder.BEPutUint64(a16[8:], ip.addr.lo)
		netip.go#L735: 		byteorder.BEPutUint64(ret[:8], ip.addr.hi)
		netip.go#L736: 		byteorder.BEPutUint64(ret[8:], ip.addr.lo)

	runtime
		rand.go#L71: 					byteorder.BEPutUint64(buf, x)