encoding/binary.ByteOrder.PutUint32 (method)

11 uses

	encoding/binary (current package)
		binary.go#L44: 	PutUint32([]byte, uint32)
		binary.go#L526: 		order.PutUint32(bs, uint32(*v))
		binary.go#L528: 		order.PutUint32(bs, uint32(v))
		binary.go#L531: 			order.PutUint32(bs[4*i:], uint32(x))
		binary.go#L534: 		order.PutUint32(bs, *v)
		binary.go#L536: 		order.PutUint32(bs, v)
		binary.go#L539: 			order.PutUint32(bs[4*i:], x)
		binary.go#L558: 		order.PutUint32(bs, math.Float32bits(*v))
		binary.go#L560: 		order.PutUint32(bs, math.Float32bits(v))
		binary.go#L563: 			order.PutUint32(bs[4*i:], math.Float32bits(x))
		binary.go#L796: 	e.order.PutUint32(e.buf[e.offset:e.offset+4], x)