func internal/byteorder.BEPutUint64

17 uses

	internal/byteorder (current package)
		byteorder.go#L126: func BEPutUint64(b []byte, v uint64) {

	internal/chacha8rand
		chacha8.go#L137: 	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/hpke
		hpke.go#L248: 	byteorder.BEPutUint64(nonce[len(nonce)-8:], ctx.seqNum)

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

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

	encoding/base64
		base64.go#L541: 			byteorder.BEPutUint64(dst[n:], dn)

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

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