/openbmc/u-boot/arch/x86/lib/ |
H A D | sfi.c | 32 static void *get_entry_start(struct table_info *tab) in get_entry_start() argument 34 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() 38 tab->entry_start += sizeof(struct sfi_table_header); in get_entry_start() 40 return (void *)(uintptr_t)tab->entry_start; in get_entry_start() 43 static void finish_table(struct table_info *tab, const char *sig, void *entry) in finish_table() argument 47 hdr = (struct sfi_table_header *)(uintptr_t)(tab->base + tab->ptr); in finish_table() 49 hdr->len = sizeof(*hdr) + ((ulong)entry - tab->entry_start); in finish_table() 55 tab->ptr += hdr->len; in finish_table() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/autofs/autofs/ |
H A D | 0005-fix-the-YACC-rule-to-fix-a-building-failure.patch | 35 -master_parse.tab.c master_parse.tab.h: master_parse.y 36 +master_parse.tab.h: master_parse.tab.c 37 +master_parse.tab.c: master_parse.y 40 master_tok.o: master_tok.c master_parse.tab.h 49 -nss_parse.tab.c nss_parse.tab.h: nss_parse.y 50 +nss_parse.tab.h: nss_parse.tab.c 51 +nss_parse.tab.c: nss_parse.y 54 nss_tok.o: nss_tok.c nss_parse.tab.h 61 amd_tok.o: amd_tok.c amd_parse.tab.h 63 -amd_parse.tab.c amd_parse.tab.h: amd_parse.y [all …]
|
/openbmc/linux/lib/ |
H A D | crc32.c | 58 crc32_body(u32 crc, unsigned char const *buf, size_t len, const u32 (*tab)[256]) 78 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]; 147 size_t len, const u32 (*tab)[256], 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]; [all …]
|
H A D | gen_crc32table.c | 38 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 D | gianfar_ethtool.c | 835 static void gfar_set_mask(u32 mask, struct filer_table *tab) in gfar_set_mask() argument 837 tab->fe[tab->index].ctrl = RQFCR_AND | RQFCR_PID_MASK | RQFCR_CMP_EXACT; in gfar_set_mask() 838 tab->fe[tab->index].prop = mask; in gfar_set_mask() 839 tab->index++; in gfar_set_mask() 843 static void gfar_set_parse_bits(u32 value, u32 mask, struct filer_table *tab) in gfar_set_parse_bits() argument 845 gfar_set_mask(mask, tab); in gfar_set_parse_bits() 846 tab->fe[tab->index].ctrl = RQFCR_CMP_EXACT | RQFCR_PID_PARSE | in gfar_set_parse_bits() 848 tab->fe[tab->index].prop = value; in gfar_set_parse_bits() 849 tab->index++; in gfar_set_parse_bits() 853 struct filer_table *tab) in gfar_set_general_attribute() argument [all …]
|
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/ |
H A D | phy_lcn.c | 925 struct phytbl_info tab; in wlc_lcnphy_common_read_table() local 926 tab.tbl_id = tbl_id; in wlc_lcnphy_common_read_table() 927 tab.tbl_ptr = tbl_ptr; in wlc_lcnphy_common_read_table() 928 tab.tbl_len = tbl_len; in wlc_lcnphy_common_read_table() 929 tab.tbl_width = tbl_width; in wlc_lcnphy_common_read_table() 930 tab.tbl_offset = tbl_offset; in wlc_lcnphy_common_read_table() 931 wlc_lcnphy_read_table(pi, &tab); in wlc_lcnphy_common_read_table() 940 struct phytbl_info tab; in wlc_lcnphy_common_write_table() local 941 tab.tbl_id = tbl_id; in wlc_lcnphy_common_write_table() 942 tab.tbl_ptr = tbl_ptr; in wlc_lcnphy_common_write_table() [all …]
|
/openbmc/linux/net/sched/ |
H A D | sch_gred.c | 53 struct gred_sched_data *tab[MAX_DPs]; member 99 struct gred_sched_data *q = table->tab[i]; in gred_wred_mode_check() 106 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() 173 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) { in gred_enqueue() 176 q = t->tab[dp]; in gred_enqueue() 199 if (t->tab[i] && t->tab[i]->prio < q->prio && in gred_enqueue() 200 !red_is_idling(&t->tab[i]->vars)) in gred_enqueue() 201 qavg += t->tab[i]->vars.qavg; in gred_enqueue() 272 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) { in gred_dequeue() [all …]
|
H A D | sch_choke.c | 71 struct sk_buff **tab; member 99 } while (q->tab[q->head] == NULL); in choke_zap_head_holes() 109 } while (q->tab[q->tail] == NULL); in choke_zap_tail_holes() 117 struct sk_buff *skb = q->tab[idx]; in choke_drop_by_idx() 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() [all …]
|
/openbmc/u-boot/board/freescale/common/ |
H A D | via.h | 2 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 D | cds_via.c | 11 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/openbmc/meta-openembedded/meta-oe/recipes-test/fwts/fwts/ |
H A D | 0001-libfwtsiasl-Disable-parallel-builds-of-lex-bison-fil.patch | 9 | 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 13 | mv: cannot stat 'dtcompilerparser.tab.c': No such file or directory 16 | mv: cannot stat 'dtcompilerparser.tab.c': No such file or directory 36 - mv aslcompiler.tab.c aslcompiler.c 37 - cp aslcompiler.tab.h aslcompiler.y.h 45 - mv dtcompilerparser.tab.c dtcompilerparser.c 46 - cp dtcompilerparser.tab.h dtcompilerparser.y.h [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/tiptop/tiptop/ |
H A D | 0001-Fix-parallel-build-problems-by-Adrian-Bunk.patch | 22 +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-support/fbset/fbset-2.1/ |
H A D | fbset-2.1-fix-makefile-dep.patch | 4 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 D | results_to_text.py | 68 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 D | simplebench.py | 121 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 D | makefile-fix-parallel.patch | 7 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 D | Makefile | 5 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/linux/arch/arm/kernel/ |
H A D | unwind.c | 575 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() 583 tab->start = (const struct unwind_idx *)start; in unwind_table_add() 584 tab->stop = (const struct unwind_idx *)(start + size); 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() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/ |
H A D | rdist-6.1.5-fix-parallel-build.patch | 4 | ../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/drivers/net/ethernet/chelsio/cxgb4/ |
H A D | sched.c | 50 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() 182 return qe ? &pi->sched_tbl->tab[qe->param.class] : NULL; in cxgb4_sched_queue_lookup() 206 e = &pi->sched_tbl->tab[qe->param.class]; in t4_sched_queue_unbind() 244 e = &s->tab[qe->param.class]; in t4_sched_queue_bind() 277 e = &pi->sched_tbl->tab[fe->param.class]; in t4_sched_flowc_unbind() 309 e = &s->tab[fe->param.class]; in t4_sched_flowc_bind() 488 end = &s->tab[s->sched_size]; in t4_sched_class_lookup() 489 for (e = &s->tab[0]; e != end; ++e) { in t4_sched_class_lookup() [all …]
|
/openbmc/linux/arch/arm/mach-s3c/ |
H A D | init.c | 32 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/pyphosphor/obmc/utils/ |
H A D | dtree.py | 23 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 D | libjvmti.c | 36 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 D | console_truetype.c | 481 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 D | hid-debug.c | 555 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() 579 tab(n+2, f); hid_resolv_usage(field->usage[j].hid, f); seq_printf(f, "\n"); in hid_dump_field() 582 tab(n, f); seq_printf(f, "Logical Minimum(%d)\n", field->logical_minimum); in hid_dump_field() 583 tab(n, f); seq_printf(f, "Logical Maximum(%d)\n", field->logical_maximum); in hid_dump_field() 586 tab(n, f); seq_printf(f, "Physical Minimum(%d)\n", field->physical_minimum); in hid_dump_field() 587 tab(n, f); seq_printf(f, "Physical Maximum(%d)\n", field->physical_maximum); in hid_dump_field() [all …]
|