Home | History | Annotate | Download | only in c-family

Lines Matching defs:vis_column

29 /* Round up VIS_COLUMN to nearest tab stop. */
32 next_tab_stop (unsigned int vis_column, unsigned int tab_width)
34 vis_column = ((vis_column + tab_width) / tab_width) * tab_width;
35 return vis_column;
58 unsigned int vis_column = 0;
65 *first_nws = vis_column;
70 vis_column = next_tab_stop (vis_column, tab_width);
72 vis_column++;
76 *first_nws = vis_column;
78 *out = vis_column;
99 unsigned int vis_column = 0;
106 *first_nws = vis_column;
111 vis_column = next_tab_stop (vis_column, tab_width);
113 vis_column++;
164 unsigned int vis_column,
174 if (line_vis_column < vis_column)
530 int vis_column = MIN (next_stmt_vis_column, body_vis_column);
533 vis_column, tab_width))