Home
last modified time | relevance | path

Searched refs:tabstops (Results 1 – 3 of 3) sorted by relevance

/titanic_50/usr/src/cmd/expand/
H A Dunexpand.c56 static int tabstops[MAX_TABS]; /* the tabstops themselves */ variable
141 if ((ocol % tabstops[0]) != 0) in tabify()
145 ocol > tabstops[cstop]) in tabify()
154 if (ocol != tabstops[cstop]) in tabify()
193 ocol += ocol % tabstops[0]; in tabify()
196 ocol < tabstops[cstop]) in tabify()
197 ocol = tabstops[cstop++]; in tabify()
244 if (nstops > 0 && i <= tabstops[nstops-1]) { in getstops()
257 tabstops[nstops++] = i; in getstops()
H A Dexpand.c55 static int tabstops[100]; variable
161 ((column - 1) % tabstops[0]) !=
162 (tabstops[0] - 1));
166 if (tabstops[n] > column)
173 while (column < tabstops[n]) {
255 if (nstops > 0 && i <= tabstops[nstops-1]) { in getstops()
261 tabstops[nstops++] = i; in getstops()
/titanic_50/usr/src/cmd/lp/filter/postscript/postprint/
H A Dpostprint.c129 int tabstops = TABSTOPS; /* tabs set at these columns */ variable
379 tabstops = atoi(optarg); in options()
381 if (tabstops <= 0) { in options()
383 tabstops = TABSTOPS; in options()
793 endcol += tabstops - ((endcol - 1) % tabstops); in spaces()