encoding/binary.ByteOrder.PutUint16 (method)

8 uses

	encoding/binary (current package)
		binary.go#L38: 	PutUint16([]byte, uint16)
		binary.go#L382: 			order.PutUint16(bs, uint16(*v))
		binary.go#L384: 			order.PutUint16(bs, uint16(v))
		binary.go#L387: 				order.PutUint16(bs[2*i:], uint16(x))
		binary.go#L390: 			order.PutUint16(bs, *v)
		binary.go#L392: 			order.PutUint16(bs, v)
		binary.go#L395: 				order.PutUint16(bs[2*i:], x)
		binary.go#L572: 	e.order.PutUint16(e.buf[e.offset:e.offset+2], x)