Searched refs:tabsize (Results 1 - 25 of 26) sorted by path

12

/freebsd-11-stable/contrib/binutils/bfd/
H A Delflink.c3322 size_t tabsize = 0;
3720 tabsize = htab->root.table.size * sizeof (struct bfd_hash_entry *);
3722 old_tab = bfd_malloc (tabsize + entsize + hashsize);
3741 old_hash = (char *) old_tab + tabsize;
3743 memcpy (old_tab, htab->root.table.table, tabsize);
4435 old_hash = (char *) old_tab + tabsize;
4441 memcpy (htab->root.table.table, old_tab, tabsize);
3313 size_t tabsize = 0; local
/freebsd-11-stable/contrib/binutils/ld/
H A Dldcref.c113 static size_t tabsize, entsize, refsize; variable
231 tabsize = cref_table.root.size * sizeof (struct bfd_hash_entry *);
232 old_tab = xmalloc (tabsize + entsize + refsize);
238 memcpy (old_tab, cref_table.root.table, tabsize);
239 old_ent = (char *) old_tab + tabsize;
280 old_ent = (char *) old_tab + tabsize;
285 memcpy (cref_table.root.table, old_tab, tabsize);
/freebsd-11-stable/contrib/diff/src/
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...]
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 Dside.c51 size_t tab_size = tabsize;
85 size_t spaces = tabsize - in_position % tabsize;
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;
/freebsd-11-stable/contrib/dtc/Documentation/
H A Ddtc-paper.tex320 tabsize=3,numbers=left,xleftmargin=2em]
/freebsd-11-stable/contrib/dtc/libfdt/
H A Dfdt.c230 const char *_fdt_find_string(const char *strtab, int tabsize, const char *s) argument
233 const char *last = strtab + tabsize - len;
H A Dlibfdt_internal.h67 const char *_fdt_find_string(const char *strtab, int tabsize, const char *s);
/freebsd-11-stable/contrib/ncurses/ncurses/base/
H A Dlib_addch.c414 int tabsize = 8; local
450 tabsize = *ptrTabsize(sp);
452 tabsize = TABSIZE;
454 x = (NCURSES_SIZE_T) (x + (tabsize - (x % tabsize)));
H A Dlib_insch.c60 int tabsize = ( local
70 for (count = (tabsize - (win->_curx % tabsize)); count > 0; count--) {
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_setup.c285 my_tabsize = TCB->info.tabsize;
H A Dtinfo_driver.c657 TCB->info.tabsize = VALID_NUMERIC(init_tabs) ? (int) init_tabs : 8;
/freebsd-11-stable/contrib/ncurses/ncurses/widechar/
H A Dlib_add_wch.c304 int tabsize = 8; local
328 tabsize = *ptrTabsize(sp);
330 tabsize = TABSIZE;
332 x = (NCURSES_SIZE_T) (x + (tabsize - (x % tabsize)));
/freebsd-11-stable/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c992 TCB->info.tabsize = 8;
/freebsd-11-stable/stand/i386/libi386/
H A Dmultiboot.h129 multiboot_uint32_t tabsize; member in struct:multiboot_aout_symbol_table
/freebsd-11-stable/sys/contrib/libfdt/
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;
H A Dlibfdt_internal.h67 const char *fdt_find_string_(const char *strtab, int tabsize, const char *s);
/freebsd-11-stable/usr.bin/diff/
H A Ddiff.h90 extern int tabsize;
H A Ddiff.c42 int tabsize = 8; variable
93 { "tabsize", required_argument, NULL, OPT_TSIZE },
255 tabsize = (int) strtonum(optarg, 1, INT_MAX, &errstr);
257 warnx("Invalid argument for tabsize");
455 " [--no-ignore-case] [--normal] [--strip-trailing-cr] [--tabsize]\n"
458 " [--no-ignore-case] [--normal] [--strip-trailing-cr] [--tabsize]\n"
461 " [--normal] [--strip-trailing-cr] [--tabsize] -D string file1 file2\n"
463 " [--no-ignore-case] [--normal] [--tabsize] [--strip-trailing-cr]\n"
466 " [--no-ignore-case] [--normal] [--tabsize] [-I pattern] [-L label]\n"
H A Ddiffreg.c1274 newcol = ((col/tabsize)+1)*tabsize;
/freebsd-11-stable/usr.bin/indent/
H A Dindent_globs.h45 #define tabsize 8 /* the size of a tab */ macro
H A Dio.c471 while ((tcur = ((curr - 1) & tabmask) + tabsize + 1) <= target) {
520 cur = ((cur - 1) & tabmask) + tabsize + 1;
/freebsd-11-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++) {

Completed in 414 milliseconds

12