func internal/byteorder.BePutUint32

29 uses

	internal/byteorder (current package)
		byteorder.go#L103: func BePutUint32(b []byte, v uint32) {

	crypto/aes
		block.go#L81: 	byteorder.BePutUint32(dst[0:4], s0)
		block.go#L82: 	byteorder.BePutUint32(dst[4:8], s1)
		block.go#L83: 	byteorder.BePutUint32(dst[8:12], s2)
		block.go#L84: 	byteorder.BePutUint32(dst[12:16], s3)
		block.go#L127: 	byteorder.BePutUint32(dst[0:4], s0)
		block.go#L128: 	byteorder.BePutUint32(dst[4:8], s1)
		block.go#L129: 	byteorder.BePutUint32(dst[8:12], s2)
		block.go#L130: 	byteorder.BePutUint32(dst[12:16], s3)

	crypto/cipher
		gcm.go#L348: 	byteorder.BePutUint32(ctr, byteorder.BeUint32(ctr)+1)

	crypto/sha1
		sha1.go#L174: 	byteorder.BePutUint32(digest[0:], d.h[0])
		sha1.go#L175: 	byteorder.BePutUint32(digest[4:], d.h[1])
		sha1.go#L176: 	byteorder.BePutUint32(digest[8:], d.h[2])
		sha1.go#L177: 	byteorder.BePutUint32(digest[12:], d.h[3])
		sha1.go#L178: 	byteorder.BePutUint32(digest[16:], d.h[4])

	crypto/sha256
		sha256.go#L233: 	byteorder.BePutUint32(digest[0:], d.h[0])
		sha256.go#L234: 	byteorder.BePutUint32(digest[4:], d.h[1])
		sha256.go#L235: 	byteorder.BePutUint32(digest[8:], d.h[2])
		sha256.go#L236: 	byteorder.BePutUint32(digest[12:], d.h[3])
		sha256.go#L237: 	byteorder.BePutUint32(digest[16:], d.h[4])
		sha256.go#L238: 	byteorder.BePutUint32(digest[20:], d.h[5])
		sha256.go#L239: 	byteorder.BePutUint32(digest[24:], d.h[6])
		sha256.go#L241: 		byteorder.BePutUint32(digest[28:], d.h[7])

	math/big
		floatmarsh.go#L51: 	byteorder.BePutUint32(buf[2:], x.prec)
		floatmarsh.go#L54: 		byteorder.BePutUint32(buf[6:], uint32(x.exp))
		ratmarsh.go#L32: 	byteorder.BePutUint32(buf[j-4:j], uint32(n))

	net/netip
		netip.go#L713: 		byteorder.BePutUint32(a4[:], uint32(ip.addr.lo))
		netip.go#L729: 		byteorder.BePutUint32(ret[:], uint32(ip.addr.lo))
		netip.go#L1014: 		byteorder.BePutUint32(b, uint32(ip.addr.lo))