encoding/binary.ByteOrder.PutUint16 (method)

8 uses

	encoding/binary (current package)
		binary.go#L43: 	PutUint16([]byte, uint16)
		binary.go#L510: 		order.PutUint16(bs, uint16(*v))
		binary.go#L512: 		order.PutUint16(bs, uint16(v))
		binary.go#L515: 			order.PutUint16(bs[2*i:], uint16(x))
		binary.go#L518: 		order.PutUint16(bs, *v)
		binary.go#L520: 		order.PutUint16(bs, v)
		binary.go#L523: 			order.PutUint16(bs[2*i:], x)
		binary.go#L785: 	e.order.PutUint16(e.buf[e.offset:e.offset+2], x)