HomeSort by: relevance | last modified time | path
    Searched defs:tab (Results 1 - 25 of 47) sorted by relevancy

1 2

  /src/sys/arch/ews4800mips/stand/common/
boot_device.c 45 void (*tab[])(int *, int *) = { variable in typeref:typename:void (* [])(int *,int *)
69 if (i < sizeof tab / sizeof tab[0])
70 return tab[i](type, unit);
  /src/tests/usr.bin/indent/
opt_di.c 10 int tab; variable in typeref:typename:int
18 int tab; variable in typeref:typename:int
62 * default configuration, the next tab stop would be at indentation 8.
68 /* The indentation consists of a single tab. */
73 /* The indentation consists of a tab and a space. */
85 * which in the default configuration amounts to a single tab.
89 int tab; variable in typeref:typename:int
96 int tab; variable in typeref:typename:int
lsym_preprocessing.c 33 #define tab '\t' /* the 'define' is followed by a tab */ macro
  /src/sys/arch/arm/sunxi/
sunxi_ccu_nkmp.c 141 const struct sunxi_ccu_nkmp_tbl *tab; local in function:sunxi_ccu_nkmp_set_rate
149 for (tab = nkmp->table; tab->rate > 0; tab++)
150 if (tab->rate == rate)
152 if (tab->rate == 0)
158 if (nkmp->p && __SHIFTOUT(val, nkmp->p) < tab->p) {
160 val |= __SHIFTIN(tab->p, nkmp->p);
164 if (nkmp->m && __SHIFTOUT(val, nkmp->m) < tab->m) {
166 val |= __SHIFTIN(tab->m, nkmp->m)
    [all...]
  /src/sys/arch/hpc/stand/hpcboot/
framebuffer.cpp 45 struct framebuffer_info *tab = _table; local in function:FrameBufferInfo::FrameBufferInfo
57 for (; tab->cpu; tab++) {
58 entry.dw.dw0 = tab->cpu;
59 entry.dw.dw1 = tab->machine;
61 if (tab->bpp == bpp) {
62 _fb = tab;
65 alt = tab;
hpcmenu.cpp 284 // Extra kernel options. (Option tab window)
372 struct support_status *tab = _unsupported; local in function:HpcMenuInterface::boot
377 for (; tab->cpu; tab++) {
378 if (tab->cpu == cpu && tab->machine == machine) {
380 tab->cause ? tab->cause :
memory.cpp 108 AddressTranslationTable *tab = _addr_table; local in function:MemoryManager::reservePage
133 tab->vaddr = vaddr;
134 tab->paddr = paddr;
135 ++tab;
142 tab = _addr_table;
144 for (int j = 0; j < 4; j++, i++, tab++)
145 DPRINTF((TEXT("%08x=%08x "), tab->vaddr, tab->paddr));
165 AddressTranslationTable *tab = &_addr_table[idx]; local in function:MemoryManager::getPage
166 vaddr = tab->vaddr
181 AddressTranslationTable *tab = local in function:MemoryManager::getTaggedPage
    [all...]
  /src/sys/arch/hpc/stand/hpcboot/sh3/
sh_console.cpp 53 const struct console_info *tab = _console_info; local in function:SHConsole::selectBootConsole
60 for (; tab->cpu; tab++) {
61 entry.dw.dw0 = tab->cpu;
62 entry.dw.dw1 = tab->machine;
66 cons.setBootConsole(tab->serial_console);
67 return tab;
69 cons.setBootConsole(tab->video_console);
70 return tab;
96 const struct console_info *tab = selectBootConsole(*this, SERIAL) local in function:SHConsole::init
    [all...]
  /src/tests/lib/libc/string/
t_memchr.c 29 struct tab { struct in function:ATF_TC_BODY
36 const struct tab tab[] = { local in function:ATF_TC_BODY
98 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) {
100 strcpy(&buf[a], tab[t].val);
102 off = f(&buf[a], '/', tab[t].len);
103 if (tab[t].match == 0) {
110 } else if (tab[t].match == 1) {
111 if (tab[t].off != ((char*)off - &buf[a]))
    [all...]
t_strcat.c 30 struct tab { struct in function:ATF_TC_BODY
35 const struct tab tab[] = { local in function:ATF_TC_BODY
88 for (t0 = 0; t0 < __arraycount(tab); ++t0) {
89 for (t1 = 0; t1 < __arraycount(tab); ++t1) {
91 memcpy(&buf0[a0], tab[t0].val,
92 tab[t0].len + 1);
93 memcpy(&buf1[a1], tab[t1].val,
94 tab[t1].len + 1);
111 if (memcmp(&buf0[a0] + tab[t0].len
    [all...]
t_strcmp.c 30 struct tab { struct in function:ATF_TC_BODY
36 const struct tab tab[] = { local in function:ATF_TC_BODY
78 for (t = 0; t < __arraycount(tab); ++t) {
79 memcpy(&buf0[a0], tab[t].val0,
80 strlen(tab[t].val0) + 1);
81 memcpy(&buf1[a1], tab[t].val1,
82 strlen(tab[t].val1) + 1);
86 if ((ret == 0 && tab[t].ret != 0) ||
87 (ret < 0 && tab[t].ret >= 0) |
    [all...]
t_strcpy.c 30 struct tab { struct in function:ATF_TC_BODY
35 const struct tab tab[] = { local in function:ATF_TC_BODY
88 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) {
90 memcpy(&buf1[a1], tab[t].val, tab[t].len + 1);
108 tab[t].len + 1) != 0) {
t_strlen.c 51 struct tab { struct in function:ATF_TC_BODY
56 const struct tab tab[] = { local in function:ATF_TC_BODY
117 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) {
119 memcpy(&buf[a], tab[t].val, tab[t].len + 1);
122 if (len != tab[t].len) {
131 write_num(tab[t].len);
133 write(2, tab[t].val, tab[t].len)
    [all...]
t_strrchr.c 29 struct tab { struct in function:ATF_TC_BODY
36 const struct tab tab[] = { local in function:ATF_TC_BODY
220 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) {
221 strcpy(&buf[a], tab[t].val);
224 if (tab[t].match == 0) {
230 } else if (tab[t].match == 1) {
231 if (tab[t].l_off != (off - &buf[a])) {
t_strchr.c 66 const char *tab[] = { local in function:ATF_TC_BODY
259 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) {
260 int len = strlen(tab[t]) + 1;
261 memcpy(&buf[a], tab[t], len);
t_strchrnul.c 65 const char *tab[] = { local in function:ATF_TC_BODY
258 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) {
259 int len = strlen(tab[t]) + 1;
260 memcpy(&buf[a], tab[t], len);
  /src/sys/arch/hpc/stand/hpcboot/menu/
tabwindow.cpp 55 // set tab image.
93 if (GetKeyState(VK_SHIFT) & 0x8000) // Shift-Tab
111 TabWindow *tab = reinterpret_cast <TabWindow *> local in function:TabWindowBase::focusManagerHook
114 dst = GetNextDlgTabItem(tab->_window, NULL, FALSE);
162 // register myself to parent tab-control.
164 // fit my dialog size to tab-control window.
rootwindow.cpp 128 // get current selected tab id
134 TabWindow *tab = reinterpret_cast <TabWindow *> local in function:RootWindow::proc
138 tab->hide();
141 tab->show();
252 // Tab control.
296 // Transition from the tab-control is done on WM_NOTIFY/TCN_KEYDOWN
300 // <TAB> auto-repeat count in LOWORD(msg.lParam), WS_GROUP, etc...
327 next = _base->_window; // out of the tab window
353 if (GetKeyState(VK_SHIFT) & 0x8000) // Shift-Tab
  /src/sys/arch/hpc/hpc/
platid_test.c 172 struct platid_name tab[] = { local in function:platid_search_test
182 int i, nmemb = sizeof(tab)/sizeof(*tab);
189 printf(" %s%s", tab[i].name, i < nmemb - 1 ? "," : "");
193 tab, nmemb, sizeof(struct platid_name));
198 tab, nmemb, sizeof(struct platid_name));
203 tab, nmemb, sizeof(struct platid_name));
208 tab, nmemb, sizeof(struct platid_name));
213 tab, nmemb, sizeof(struct platid_name));
  /src/usr.bin/unexpand/
unexpand.c 79 char *ep, *tab; local in function:main
92 while ((tab = strsep(&optarg, ", \t")) != NULL) {
93 if (*tab == '\0')
96 i = strtoul(tab, &ep, 0);
99 "Invalid tabstop `%s'", tab);
108 tab, tabstops[nstops - 1]);
  /src/usr.sbin/mtree/
compare.c 77 tab = "\t"; \
81 tab = "\t"; \
84 tab = ""; \
100 printf("%sflags (\"%s\"", tab, sf); \
141 const char *cp, *tab; local in function:compare
146 tab = NULL;
207 tab, (uintmax_t)s->st_rdev,
226 tab = "\t";
234 tab, (u_long)s->st_uid, (u_long)p->fts_statp->st_uid);
246 tab = "\t"
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stackdepotbase.h 52 atomic_uintptr_t tab[kTabSize]; // Hash table of Node's. member in class:__sanitizer::StackDepotBase
103 atomic_uintptr_t *p = &tab[h % kTabSize];
148 atomic_uintptr_t *p = &tab[idx];
163 lock(&tab[i]);
170 atomic_uintptr_t *p = &tab[i];
  /src/sys/arch/amiga/amiga/
disksubr.c 111 } tab[0]; member in struct:rdbmap
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_fd.cc 35 atomic_uintptr_t tab[kTableSizeL1]; member in struct:__tsan::FdContext
77 atomic_uintptr_t *pl1 = &fdctx.tab[fd / kTableSizeL2];
133 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed); local in function:__tsan::FdOnFork
134 if (tab == 0)
137 FdDesc *d = &tab[l2];
145 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed); local in function:__tsan::FdLocation
146 if (tab == 0)
148 if (addr >= (uptr)tab && addr < (uptr)(tab + kTableSizeL2))
    [all...]
  /src/sys/external/bsd/ipf/netinet/
ip_lookup.c 898 void *tab = NULL; local in function:ipf_lookup_find_htable
905 tab = ipf_htable_find(softl->ipf_back[i], unit, name);
911 return tab;

Completed in 24 milliseconds

1 2