encoding/binary.ByteOrder.PutUint32 (method)

11 uses

	encoding/binary (current package)
		binary.go#L39: 	PutUint32([]byte, uint32)
		binary.go#L327: 			order.PutUint32(bs, uint32(*v))
		binary.go#L329: 			order.PutUint32(bs, uint32(v))
		binary.go#L332: 				order.PutUint32(bs[4*i:], uint32(x))
		binary.go#L335: 			order.PutUint32(bs, *v)
		binary.go#L337: 			order.PutUint32(bs, v)
		binary.go#L340: 				order.PutUint32(bs[4*i:], x)
		binary.go#L359: 			order.PutUint32(bs, math.Float32bits(*v))
		binary.go#L361: 			order.PutUint32(bs, math.Float32bits(v))
		binary.go#L364: 				order.PutUint32(bs[4*i:], math.Float32bits(x))
		binary.go#L509: 	e.order.PutUint32(e.buf[e.offset:e.offset+4], x)