Home | History | Annotate | Download | only in unexpand

Lines Matching defs:tabstops

62 static size_t	*tabstops;
102 tabstops = erealloc(tabstops, maxstops);
104 if (nstops && tabstops[nstops - 1] >= (size_t)i)
108 tab, tabstops[nstops - 1]);
109 tabstops[nstops++] = i;
135 const size_t dstop = (nstops == 0) ? DSTOP : tabstops[0];
140 limit = nstops <= 1 ? UINT_MAX : tabstops[nstops - 1] - 1;
151 for (n = 0; n < nstops && tabstops[n] <= dcol; n++)
153 if (n < nstops - 1 && tabstops[n] - 1 < limit) {
154 dcol = tabstops[n];
169 for (n = 0; n < nstops && tabstops[n] <= ocol; n++)
171 while (n < nstops && tabstops[n] <= dcol && ocol < dcol
175 ocol = tabstops[n++];