Lines Matching defs:point
248 * Custom acceleration function min point value
253 * Custom acceleration function max point value
433 struct device_coords point;
633 const struct device_coords *point);
671 const struct device_coords *point);
678 const struct device_coords *point);
957 * Returns true if the point is within the given rectangle, including the
961 point_in_rect(const struct device_coords *point,
964 return (point->x >= rect->x &&
965 point->x < rect->x + rect->w &&
966 point->y >= rect->y &&
967 point->y < rect->y + rect->h);