Searched refs:tabstop (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dmvcur.c182 int dist, tabs, tabstop; local
190 tabs = tabstop = 0;
199 tabstop = nc / init_tabs;
201 tabs = tabstop - oc / init_tabs;
203 /* Set oc to tabstop before nc : oc <= nc. */
204 oc = tabstop * init_tabs;
206 /* Distance from next tabstop to nc in columns. */
207 tabstop = init_tabs - nc % init_tabs;
216 tabstop = nc / init_tabs;
218 tabs = (oc - 1) / init_tabs - tabstop;
[all...]
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dmvcur.c185 int dist, tabs, tabstop; local
193 tabs = tabstop = dist = 0;
202 tabstop = nc / init_tabs;
204 tabs = tabstop - oc / init_tabs;
206 /* Set oc to tabstop before nc : oc <= nc. */
207 oc = tabstop * init_tabs;
209 /* Distance from next tabstop to nc in columns. */
210 tabstop = init_tabs - nc % init_tabs;
219 tabstop = nc / init_tabs;
221 tabs = (oc - 1) / init_tabs - tabstop;
[all...]
/illumos-gate/usr/src/tools/codereview/
H A Dlwlp.c177 static int tabstop; variable
285 tabstop = DEFAULT_TAB_SIZE;
385 tabstop = atoi(optarg);
386 if (tabstop < 1) {
387 fatal("negative tabstop");
1231 i = tabstop - (currentp % tabstop) +
1232 tabc * tabstop;
1242 i = (tabc + 1) * tabstop;
/illumos-gate/usr/src/uts/common/io/
H A Dtem_safe.c1670 screen_pos_t tabstop; local
1675 tabstop = 0;
1679 tabstop = tem->tvs_tabs[i];
1685 tabstop, credp, called_from);
1693 screen_pos_t tabstop; local
1698 tabstop = tems.ts_c_dimension.width - 1;
1702 tabstop = tem->tvs_tabs[i];
1708 tabstop, credp, called_from);
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_io.c550 mdb_iob_tabstop(mdb_iob_t *iob, size_t tabstop) argument
552 iob->iob_tabstop = MIN(tabstop, iob->iob_cols - 1);
1856 * Round up to the next multiple of the tabstop. If this puts

Completed in 155 milliseconds