HomeSort by: relevance | last modified time | path
    Searched defs:nstops (Results 1 - 3 of 3) sorted by relevancy

  /src/usr.bin/expand/
expand.c 54 size_t nstops; variable in typeref:typename:size_t
99 if (nstops == 0) {
106 if (nstops == 1) {
114 for (n = 0; n < nstops; n++)
117 if (n == nstops) {
155 nstops = 0;
162 if (nstops > 0 && (size_t)i <= tabstops[nstops-1])
164 if (nstops == sizeof(tabstops) / sizeof(tabstops[0]) - 1)
166 tabstops[nstops++] = i
    [all...]
  /src/usr.bin/tabs/
tabs.c 52 #define NSTOPS 20
87 int i, n, inc = 8, stops[NSTOPS], nstops, last, cols, margin = 0; local in function:main
150 last = nstops = 0;
152 nstops = -1;
157 if (nstops >= NSTOPS)
159 "too many tab stops (max %d)", NSTOPS);
166 if (nstops == 0)
173 last = stops[nstops++] = n
    [all...]
  /src/usr.bin/unexpand/
unexpand.c 60 static size_t nstops; variable in typeref:typename:size_t
100 if (nstops >= 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;
147 if (nstops <= 1)
    [all...]

Completed in 12 milliseconds