encoding/binary.ByteOrder.PutUint16 (method)

8 uses

	encoding/binary (current package)
		binary.go#L38: 	PutUint16([]byte, uint16)
		binary.go#L311: 			order.PutUint16(bs, uint16(*v))
		binary.go#L313: 			order.PutUint16(bs, uint16(v))
		binary.go#L316: 				order.PutUint16(bs[2*i:], uint16(x))
		binary.go#L319: 			order.PutUint16(bs, *v)
		binary.go#L321: 			order.PutUint16(bs, v)
		binary.go#L324: 				order.PutUint16(bs[2*i:], x)
		binary.go#L498: 	e.order.PutUint16(e.buf[e.offset:e.offset+2], x)