Searched refs:tabsize (Results 1 - 24 of 24) sorted by relevance

/freebsd-13-stable/contrib/ncurses/ncurses/base/
H A Dlib_insch.c60 int tabsize = ( local
70 for (count = (tabsize - (win->_curx % tabsize)); count > 0; count--) {
H A Dlib_addch.c420 int tabsize = 8; local
457 tabsize = *ptrTabsize(sp);
459 tabsize = TABSIZE;
461 x = (NCURSES_SIZE_T) (x + (tabsize - (x % tabsize)));
/freebsd-13-stable/sys/contrib/libfdt/
H A Dlibfdt_internal.h67 const char *fdt_find_string_(const char *strtab, int tabsize, const char *s);
H A Dfdt.c233 const char *fdt_find_string_(const char *strtab, int tabsize, const char *s) argument
236 const char *last = strtab + tabsize - len;
/freebsd-13-stable/usr.bin/indent/
H A Dio.c175 com_st++, target += opt.tabsize;
180 target = opt.tabsize * (1 + (target - 1) / opt.tabsize) + 1;
417 while ((tcur = opt.tabsize * (1 + (curr - 1) / opt.tabsize) + 1) <= target) {
466 cur = opt.tabsize * (1 + (cur - 1) / opt.tabsize) + 1;
H A Dindent.c301 col = opt.tabsize * (1 + (col - 1) / opt.tabsize) + 1;
1080 opt.max_col - opt.tabsize))
1294 * get the tab math right for indentations that are not multiples of tabsize
1296 if ((ps.ind_level * opt.ind_size) % opt.tabsize != 0) {
1297 pos += (ps.ind_level * opt.ind_size) % opt.tabsize;
1298 cur_dec_ind += (ps.ind_level * opt.ind_size) % opt.tabsize;
1303 CHECK_SIZE_CODE(cur_dec_ind / opt.tabsize);
1304 while ((tpos = opt.tabsize * (1 + pos / opt.tabsize)) <
[all...]
H A Dpr_comment.c149 ps.com_col = opt.tabsize * (1 + (target_col - 1) / opt.tabsize) + 1;
H A Dindent_globs.h216 int tabsize; /* the size of a tab */ member in struct:options
H A Dargs.c168 {"ts", PRO_INT, 8, 0, &opt.tabsize},
/freebsd-13-stable/usr.bin/diff/
H A Ddiff.h96 extern int tabsize, width;
H A Ddiffreg.c276 padding = tabsize - (hw % tabsize);
277 if ((flags & D_EXPANDTABS) != 0 || (padding % tabsize == 0))
1292 newcol = ((col/tabsize)+1)*tabsize;
1300 if ((j + tabsize) > nc) {
1306 col += tabsize - 1;
1307 j += tabsize - 1;
1681 /* first tabstop may be closer than tabsize */
1682 i = tabsize
[all...]
H A Ddiff.c43 int tabsize = 8, width = 130; variable
97 { "tabsize", required_argument, NULL, OPT_TSIZE },
292 tabsize = (int) strtonum(optarg, 1, INT_MAX, &errstr);
294 warnx("Invalid argument for tabsize");
524 " [--no-ignore-case] [--normal] [--strip-trailing-cr] [--tabsize]\n"
527 " [--no-ignore-case] [--normal] [--strip-trailing-cr] [--tabsize]\n"
530 " [--normal] [--strip-trailing-cr] [--tabsize] -D string file1 file2\n"
532 " [--no-ignore-case] [--normal] [--tabsize] [--strip-trailing-cr]\n"
535 " [--no-ignore-case] [--normal] [--tabsize] [-I pattern] [-L label]\n"
540 " [--suppress-common-lines] [--tabsize] [
[all...]
/freebsd-13-stable/contrib/diff/src/
H A Dutil.c414 column += tabsize - column % tabsize;
423 column2 += tabsize - column2 % tabsize;
450 column += c1 == '\t' ? tabsize - column % tabsize : 1;
560 size_t tab_size = tabsize;
H A Dside.c51 size_t tab_size = tabsize;
85 size_t spaces = tabsize - in_position % tabsize;
H A Ddiff.h149 XTERN size_t tabsize;
148 XTERN size_t tabsize; variable
H A Dio.c294 repetitions = tabsize - column % tabsize;
364 repetitions = tabsize - column % tabsize;
H A Ddiff.c236 {"tabsize", 1, 0, TABSIZE_OPTION},
580 try_help ("invalid tabsize `%s'", optarg);
581 if (tabsize != numval)
583 if (tabsize)
584 fatal ("conflicting tabsize options");
585 tabsize = numval;
673 if (! tabsize)
674 tabsize = 8;
689 intmax_t t = expand_tabs ? 1 : tabsize;
919 N_("--tabsize
[all...]
/freebsd-13-stable/contrib/ncurses/ncurses/widechar/
H A Dlib_add_wch.c305 int tabsize = 8; local
329 tabsize = *ptrTabsize(sp);
331 tabsize = TABSIZE;
333 x = (NCURSES_SIZE_T) (x + (tabsize - (x % tabsize)));
/freebsd-13-stable/stand/i386/libi386/
H A Dmultiboot.h129 multiboot_uint32_t tabsize; member in struct:multiboot_aout_symbol_table
/freebsd-13-stable/usr.bin/diff/tests/
H A Ddiff_test.sh15 atf_test_case tabsize
196 diff -t --tabsize 1 A B
267 atf_add_test_case tabsize
/freebsd-13-stable/sys/contrib/ipfilter/netinet/
H A Dip_sync.c1212 /* Parameters: tabsize(I) - size of the array pointed to by table */
1220 ipf_sync_flush_table(softs, tabsize, table)
1222 int tabsize;
1230 for (i = 0; i < tabsize; i++) {
/freebsd-13-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_setup.c290 my_tabsize = TCB->info.tabsize;
H A Dtinfo_driver.c731 TCB->info.tabsize = VALID_NUMERIC(init_tabs) ? (int) init_tabs : 8;
/freebsd-13-stable/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c1253 TCB->info.tabsize = 8;

Completed in 302 milliseconds