Lines Matching defs:points
202 w->strip_chart.points = NULL;
213 if (w->strip_chart.points)
214 XtFree((char *) w->strip_chart.points);
288 if (w->strip_chart.points != NULL) {
289 w->strip_chart.points[0].x = w->strip_chart.interval;
291 w->strip_chart.points, w->strip_chart.scale - 1,
301 * Next represents the number of valid points in data. Returns the (possibly)
494 XPoint * points;
499 XtFree ((char *) w->strip_chart.points);
500 w->strip_chart.points = NULL;
506 points = (XPoint *) XtRealloc( (XtPointer) w->strip_chart.points, size);
507 w->strip_chart.points = points;
512 points[i - 1].x = 0;
513 points[i - 1].y = HEIGHT / w->strip_chart.scale;