Home
last modified time | relevance | path

Searched refs:tab (Results 1 – 25 of 233) sorted by relevance

12345678910

/openbmc/u-boot/arch/x86/lib/
H A Dsfi.c34 if (tab->count == SFI_TABLE_MAX_ENTRIES) in get_entry_start()
36 tab->entry_start = tab->base + tab->ptr; in get_entry_start()
37 tab->table[tab->count] = tab->entry_start; in get_entry_start()
47 hdr = (struct sfi_table_header *)(uintptr_t)(tab->base + tab->ptr); in finish_table()
55 tab->ptr += hdr->len; in finish_table()
56 tab->ptr = ALIGN(tab->ptr, 16); in finish_table()
57 tab->count++; in finish_table()
62 u64 *entry = get_entry_start(tab); in sfi_write_system_header()
68 for (i = 0; i < tab->count; i++) in sfi_write_system_header()
69 *entry++ = tab->table[i]; in sfi_write_system_header()
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/autofs/autofs/
H A Dfix-the-YACC-rule-to-fix-a-building-failure.patch34 -nss_parse.tab.c nss_parse.tab.h: nss_parse.y
35 +nss_parse.tab.h: nss_parse.tab.c
36 +nss_parse.tab.c: nss_parse.y
39 nss_tok.o: nss_tok.c nss_parse.tab.h
46 -amd_parse.tab.c amd_parse.tab.h: amd_parse.y
47 +amd_parse.tab.h: amd_parse.tab.c
48 +amd_parse.tab.c: amd_parse.y
51 amd_parse.tab.o: amd_parse.tab.c amd_parse.tab.h
67 -master_parse.tab.c master_parse.tab.h: master_parse.y
68 +master_parse.tab.h: master_parse.tab.c
[all …]
/openbmc/linux/lib/
H A Dcrc32.c78 const u32 *t0=tab[0], *t1=tab[1], *t2=tab[2], *t3=tab[3];
80 const u32 *t4 = tab[4], *t5 = tab[5], *t6 = tab[6], *t7 = tab[7];
160 crc = (crc >> 2) ^ tab[0][crc & 3];
161 crc = (crc >> 2) ^ tab[0][crc & 3];
162 crc = (crc >> 2) ^ tab[0][crc & 3];
163 crc = (crc >> 2) ^ tab[0][crc & 3];
168 crc = (crc >> 4) ^ tab[0][crc & 15];
169 crc = (crc >> 4) ^ tab[0][crc & 15];
175 crc = (crc >> 8) ^ tab[0][crc & 255];
179 crc = crc32_body(crc, p, len, tab);
[all …]
H A Dgen_crc32table.c38 uint32_t (*tab)[256]) in crc32init_le_generic()
43 tab[0][0] = 0; in crc32init_le_generic()
48 tab[0][i + j] = crc ^ tab[0][j]; in crc32init_le_generic()
51 crc = tab[0][i]; in crc32init_le_generic()
53 crc = tab[0][crc & 0xff] ^ (crc >> 8); in crc32init_le_generic()
54 tab[j][i] = crc; in crc32init_le_generic()
/openbmc/linux/drivers/net/ethernet/freescale/
H A Dgianfar_ethtool.c838 tab->fe[tab->index].prop = mask; in gfar_set_mask()
848 tab->fe[tab->index].prop = value; in gfar_set_parse_bits()
857 tab->fe[tab->index].prop = value; in gfar_set_general_attribute()
1124 tab); in gfar_convert_to_filer()
1131 tab); in gfar_convert_to_filer()
1152 tab->fe[tab->index].ctrl = 0x20; in gfar_convert_to_filer()
1153 tab->fe[tab->index].prop = 0x0; in gfar_convert_to_filer()
1158 tab->fe[tab->index - 1].ctrl &= (~RQFCR_AND); in gfar_convert_to_filer()
1162 tab->fe[tab->index - 1].ctrl |= RQFCR_RJE; in gfar_convert_to_filer()
1169 tab->fe[tab->index - 1].ctrl |= RQFCR_CLE; in gfar_convert_to_filer()
[all …]
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/
H A Dphy_lcn.c1897 tab.tbl_len = 1; in wlc_lcnphy_get_bbmult()
1912 tab.tbl_len = 1; in wlc_lcnphy_set_bbmult()
2081 tab.tbl_len = 1; in wlc_lcnphy_tssi_setup()
2170 tab.tbl_len = 1; in wlc_lcnphy_tssi_setup()
2284 tab.tbl_len = 4; in wlc_lcnphy_set_tx_pwr_soft_ctrl()
2289 tab.tbl_len = 1; in wlc_lcnphy_set_tx_pwr_soft_ctrl()
2951 tab.tbl_len = 1; in wlc_lcnphy_vbat_temp_sense_setup()
3113 tab.tbl_len = 2; in wlc_lcnphy_set_tx_iqcc()
3125 tab.tbl_len = 1; in wlc_lcnphy_set_tx_locc()
3791 tab.tbl_id = 0; in wlc_lcnphy_get_tx_iqcc()
[all …]
/openbmc/u-boot/board/freescale/common/
H A Dvia.h2 void mpc85xx_config_via(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
5 …pc85xx_config_via_usbide(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
8 …d mpc85xx_config_via_usb(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
11 … mpc85xx_config_via_usb2(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
14 …mpc85xx_config_via_power(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
17 … mpc85xx_config_via_ac97(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
H A Dcds_via.c11 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via() argument
40 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_usbide() argument
58 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_usb() argument
67 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_usb2() argument
76 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_power() argument
87 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_ac97() argument
/openbmc/linux/net/sched/
H A Dsch_gred.c106 if (table->tab[n] && table->tab[n]->prio == q->prio) in gred_wred_mode_check()
160 if (table->tab[i] && table->tab[i]->red_flags) in gred_per_vq_red_flags_used()
176 q = t->tab[dp]; in gred_enqueue()
199 if (t->tab[i] && t->tab[i]->prio < q->prio && in gred_enqueue()
372 if (table->tab[i]) in gred_offload_dump_stats()
382 if (!table->tab[i]) in gred_offload_dump_stats()
464 if (table->tab[i]) in gred_change_table_def()
465 table->tab[i]->red_flags = in gred_change_table_def()
469 if (table->tab[i]) { in gred_change_table_def()
473 table->tab[i] = NULL; in gred_change_table_def()
[all …]
H A Dsch_choke.c71 struct sk_buff **tab; member
119 q->tab[idx] = NULL; in choke_drop_by_idx()
187 skb = q->tab[*pidx]; in choke_peek_random()
192 return q->tab[*pidx = q->head]; in choke_peek_random()
268 q->tab[q->tail] = skb; in choke_enqueue()
294 skb = q->tab[q->head]; in choke_dequeue()
295 q->tab[q->head] = NULL; in choke_dequeue()
317 if (q->tab) in choke_reset()
378 old = q->tab; in choke_change()
404 q->tab = ntab; in choke_change()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/tiptop/tiptop/
H A D0001-Fix-parallel-build-problems-by-Adrian-Bunk.patch22 +y.tab.c: y.tab.h
24 -y.tab.c y.tab.h: calc.y
25 +y.tab.h: calc.y
28 y.tab.o: y.tab.c
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-test/fwts/fwts/
H A D0001-libfwtsiasl-Disable-parallel-builds-of-lex-bison-fil.patch9 | mv dtcompilerparser.tab.c dtcompilerparser.c
10 | mv dtcompilerparser.tab.c dtcompilerparser.c
11 | cp dtcompilerparser.tab.h dtcompilerparser.y.h
12 | mv dtcompilerparser.tab.c dtcompilerparser.c
36 - mv aslcompiler.tab.c aslcompiler.c
37 - cp aslcompiler.tab.h aslcompiler.y.h
45 - mv dtcompilerparser.tab.c dtcompilerparser.c
54 - mv dtparser.tab.c dtparser.c
55 - cp dtparser.tab.h dtparser.y.h
63 - mv prparser.tab.c prparser.c
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/fbset/fbset-2.1/
H A Dfbset-2.1-fix-makefile-dep.patch4 Subject: [PATCH] fbset 2.1 fix makefile dep modes.tab.c
9 make: *** No rule to make target `modes.tab.h', needed by `lex.yy.o'. Stop.
20 @@ -15,7 +15,7 @@ fbset: fbset.o modes.tab.o lex.yy.o
23 modes.tab.o: modes.tab.c fbset.h fb.h
24 -lex.yy.o: lex.yy.c fbset.h modes.tab.h
25 +lex.yy.o: lex.yy.c fbset.h modes.tab.c
/openbmc/qemu/scripts/simplebench/
H A Dresults_to_text.py68 tab = []
72 tab.append([''] + [chr(ord('A') + i) for i in range(n_columns)])
74 tab.append([''] + [c['id'] for c in results['envs']])
82 tab.append(row)
107 col_j = tab[0][j + 1] if named_columns else ''
112 tab.append(row)
114 return f'All results are in {dim}\n\n' + tabulate.tabulate(tab)
H A Dsimplebench.py121 tab = {}
125 'tab': tab
133 if case['id'] not in tab:
134 tab[case['id']] = {}
135 tab[case['id']][env['id']] = bench_one(test_func, env, case,
/openbmc/openbmc/poky/meta/recipes-extended/at/at/
H A Dmakefile-fix-parallel.patch7 y.tab.c:1001:0: error: unterminated #if
26 -y.tab.c y.tab.h: parsetime.y
27 +y.tab.h: y.tab.c
29 +y.tab.c: parsetime.y
/openbmc/linux/scripts/genksyms/
H A DMakefile5 genksyms-objs := genksyms.o parse.tab.o lex.lex.o
20 $(obj)/pars%.tab.c $(obj)/pars%.tab.h: $(src)/pars%.y FORCE
26 HOSTCFLAGS_parse.tab.o := -I $(srctree)/$(src)
30 $(obj)/lex.lex.o: $(obj)/parse.tab.h
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/
H A Drdist-6.1.5-fix-parallel-build.patch4 | ../include/defs.h:49:10: fatal error: y.tab.h: No such file or directory
5 | 49 | #include "y.tab.h"
10 and y.tab.h to fix the parallel build failure.
27 -$(CLIENTOBJS) $(SERVEROBJS): $(HFILES) y.tab.h
28 +$(COMMONOBJS) $(CLIENTOBJS) $(SERVEROBJS): $(HFILES) y.tab.h
30 y.tab.h: gram.c
/openbmc/linux/arch/arm/mach-s3c/
H A Dinit.c32 struct cpu_table *tab, in s3c_lookup_cpu() argument
35 for (; count != 0; count--, tab++) { in s3c_lookup_cpu()
36 if ((idcode & tab->idmask) == (tab->idcode & tab->idmask)) in s3c_lookup_cpu()
37 return tab; in s3c_lookup_cpu()
/openbmc/linux/arch/arm/kernel/
H A Dunwind.c575 struct unwind_table *tab = kmalloc(sizeof(*tab), GFP_KERNEL); in unwind_table_add() local
580 if (!tab) in unwind_table_add()
581 return tab; in unwind_table_add()
585 tab->origin = unwind_find_origin(tab->start, tab->stop); in unwind_table_add()
586 tab->begin_addr = text_addr; in unwind_table_add()
587 tab->end_addr = text_addr + text_size; in unwind_table_add()
590 list_add_tail(&tab->list, &unwind_tables); in unwind_table_add()
593 return tab; in unwind_table_add()
600 if (!tab) in unwind_table_del()
604 list_del(&tab->list); in unwind_table_del()
[all …]
/openbmc/linux/drivers/net/ethernet/chelsio/cxgb4/
H A Dsched.c50 e = &s->tab[p->u.params.class]; in t4_sched_class_fw_cmd()
129 end = &s->tab[s->sched_size]; in t4_sched_entry_lookup()
130 for (e = &s->tab[0]; e != end; ++e) { in t4_sched_entry_lookup()
244 e = &s->tab[qe->param.class]; in t4_sched_queue_bind()
309 e = &s->tab[fe->param.class]; in t4_sched_flowc_bind()
488 end = &s->tab[s->sched_size]; in t4_sched_class_lookup()
504 end = &s->tab[s->sched_size]; in t4_sched_class_lookup()
614 e = &s->tab[classid]; in cxgb4_sched_class_free()
664 s->tab[i].idx = i; in t4_init_sched()
667 atomic_set(&s->tab[i].refcnt, 0); in t4_init_sched()
[all …]
/openbmc/pyphosphor/obmc/utils/
H A Ddtree.py23 tab = indent * depth * ' '
35 fd.write('%s%s' % (tab, k))
39 fd.write('%s%s = ' % (tab, k))
44 fd.write('%s%s {%s' % (tab, k, newline))
46 fd.write('%s};%s' % (tab, newline))
/openbmc/linux/tools/perf/jvmti/
H A Dlibjvmti.c36 jvmti_line_info_t *tab) in do_get_line_number() argument
57 tab->pc = (unsigned long)pc; in do_get_line_number()
58 tab->line_number = loc_tab[src_line].line_number; in do_get_line_number()
59 tab->discrim = 0; /* not yet used */ in do_get_line_number()
60 tab->methodID = m; in do_get_line_number()
73 get_line_numbers(jvmtiEnv *jvmti, const void *compile_info, jvmti_line_info_t **tab, int *nr_lines) in get_line_numbers() argument
82 if (!(tab && nr_lines)) in get_line_numbers()
101 *tab = malloc(nr_total * sizeof(**tab)); in get_line_numbers()
102 if (!*tab) in get_line_numbers()
118 *tab + lines_total); in get_line_numbers()
[all …]
/openbmc/u-boot/drivers/video/
H A Dconsole_truetype.c481 struct font_info *tab; in console_truetype_find_font() local
483 for (tab = font_table; tab->begin; tab++) { in console_truetype_find_font()
484 if (abs(tab->begin - tab->end) > 4) { in console_truetype_find_font()
486 tab->name, tab->begin, in console_truetype_find_font()
487 (ulong)(tab->end - tab->begin)); in console_truetype_find_font()
488 return tab->begin; in console_truetype_find_font()
/openbmc/linux/drivers/hid/
H A Dhid-debug.c555 static void tab(int n, struct seq_file *f) { in tab() function
563 tab(n, f); in hid_dump_field()
568 tab(n, f); in hid_dump_field()
573 tab(n, f); in hid_dump_field()
577 tab(n, f); seq_printf(f, "Usage(%d)\n", field->maxusage); in hid_dump_field()
611 tab(n, f); seq_printf(f, "Unit(Invalid)\n"); in hid_dump_field()
616 tab(n, f); seq_printf(f, "Unit(%s : ", systems[sys]); in hid_dump_field()
638 tab(n, f); seq_printf(f, "Report Size(%u)\n", field->report_size); in hid_dump_field()
642 tab(n, f); seq_printf(f, "Flags( "); in hid_dump_field()
670 tab(2, f); in hid_dump_device()
[all …]

12345678910