Lines Matching full:points
23 /* REG_TD_STATUS: Touch points. */
36 /* Points registers */
113 uint8_t points; in gt911_process() local
118 /* obtain number of touch points */ in gt911_process()
133 * points we are configured to support in gt911_process()
135 points = status & TOUCH_POINTS_MSK; in gt911_process()
145 /* current points array */ in gt911_process()
146 for (i = 0; i < points; i++) { in gt911_process()
157 for (i = 0; i < points; i++) { in gt911_process()
172 /* We look for the prev_point in the current points list */ in gt911_process()
173 for (j = 0; j < points; j++) { in gt911_process()
179 if (j == points) { in gt911_process()
193 prev_points = points; in gt911_process()