| /OK3568_Linux_fs/u-boot/arch/x86/lib/ |
| H A D | sfi.c | 33 static void *get_entry_start(struct table_info *tab) in get_entry_start() argument 35 if (tab->count == SFI_TABLE_MAX_ENTRIES) in get_entry_start() 37 tab->entry_start = tab->base + tab->ptr; in get_entry_start() 38 tab->table[tab->count] = tab->entry_start; in get_entry_start() 39 tab->entry_start += sizeof(struct sfi_table_header); in get_entry_start() 41 return (void *)(uintptr_t)tab->entry_start; in get_entry_start() 44 static void finish_table(struct table_info *tab, const char *sig, void *entry) in finish_table() argument 48 hdr = (struct sfi_table_header *)(uintptr_t)(tab->base + tab->ptr); in finish_table() 50 hdr->len = sizeof(*hdr) + ((ulong)entry - tab->entry_start); in finish_table() 56 tab->ptr += hdr->len; in finish_table() [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/autofs/autofs/ |
| H A D | fix-the-YACC-rule-to-fix-a-building-failure.patch | 32 -nss_parse.tab.c nss_parse.tab.h: nss_parse.y 33 +nss_parse.tab.h: nss_parse.tab.c 34 +nss_parse.tab.c: nss_parse.y 37 nss_tok.o: nss_tok.c nss_parse.tab.h 42 amd_tok.o: amd_tok.c amd_parse.tab.h 44 -amd_parse.tab.c amd_parse.tab.h: amd_parse.y 45 +amd_parse.tab.h: amd_parse.tab.c 46 +amd_parse.tab.c: amd_parse.y 49 amd_parse.tab.o: amd_parse.tab.c amd_parse.tab.h 52 @@ -16,7 +16,7 @@ YACCSRC = master_tok.c master_parse.tab. [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/freescale/ |
| H A D | gianfar_ethtool.c | 825 static void gfar_set_mask(u32 mask, struct filer_table *tab) in gfar_set_mask() argument 827 tab->fe[tab->index].ctrl = RQFCR_AND | RQFCR_PID_MASK | RQFCR_CMP_EXACT; in gfar_set_mask() 828 tab->fe[tab->index].prop = mask; in gfar_set_mask() 829 tab->index++; in gfar_set_mask() 833 static void gfar_set_parse_bits(u32 value, u32 mask, struct filer_table *tab) in gfar_set_parse_bits() argument 835 gfar_set_mask(mask, tab); in gfar_set_parse_bits() 836 tab->fe[tab->index].ctrl = RQFCR_CMP_EXACT | RQFCR_PID_PARSE | in gfar_set_parse_bits() 838 tab->fe[tab->index].prop = value; in gfar_set_parse_bits() 839 tab->index++; in gfar_set_parse_bits() 843 struct filer_table *tab) in gfar_set_general_attribute() argument [all …]
|
| /OK3568_Linux_fs/kernel/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()
|
| /OK3568_Linux_fs/buildroot/package/pound/ |
| H A D | 0002-fix-openssl-1.1.0.patch | 132 @@ -58,7 +65,9 @@ t_add(LHASH_OF(TABNODE) *const tab, const char *key, const void *content, const 138 + if((old = lh_TABNODE_insert(tab, t)) != NULL) { 140 if((old = LHM_lh_insert(TABNODE, tab, t)) != NULL) { 142 if((old = (TABNODE *)lh_insert(tab, t)) != NULL) { 143 @@ -82,7 +91,9 @@ t_find(LHASH_OF(TABNODE) *const tab, char *const key) 149 + if((res = lh_TABNODE_retrieve(tab, &t)) != NULL) { 151 if((res = (TABNODE *)LHM_lh_retrieve(TABNODE, tab, &t)) != NULL) { 153 if((res = (TABNODE *)lh_retrieve(tab, &t)) != NULL) { 154 @@ -102,7 +113,9 @@ t_remove(LHASH_OF(TABNODE) *const tab, char *const key) 160 + if((res = lh_TABNODE_delete(tab, &t)) != NULL) { [all …]
|
| H A D | 0003-Support-for-libressl-coexisting-with-openssl-1.1.x.patch | 19 if((old = lh_TABNODE_insert(tab, t)) != NULL) { 57 @@ -65,7 +65,7 @@ t_add(LHASH_OF(TABNODE) *const tab, const char *key, const void *content, const 63 if((old = lh_TABNODE_insert(tab, t)) != NULL) { 65 if((old = LHM_lh_insert(TABNODE, tab, t)) != NULL) { 66 @@ -91,7 +91,7 @@ t_find(LHASH_OF(TABNODE) *const tab, char *const key) 72 if((res = lh_TABNODE_retrieve(tab, &t)) != NULL) { 74 if((res = (TABNODE *)LHM_lh_retrieve(TABNODE, tab, &t)) != NULL) { 75 @@ -113,7 +113,7 @@ t_remove(LHASH_OF(TABNODE) *const tab, char *const key) 81 if((res = lh_TABNODE_delete(tab, &t)) != NULL) { 83 if((res = LHM_lh_delete(TABNODE, tab, &t)) != NULL) { [all …]
|
| /OK3568_Linux_fs/kernel/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 …]
|
| /OK3568_Linux_fs/buildroot/package/at/ |
| H A D | 0004-Makefile-fix-parallel-build-failure.patch | 7 1) parsetime.l tries to include incomplete y.tab.h, since y.tab.h is the 9 2) when compiling y.tab.c, y.tab.c itself is not complete, since it is 13 1) making parsetime.l to wait for y.tab.h to be created by yacc 14 2) waiting for y.tab.c and y.tab.h to be created before compile them 25 @@ -83,6 +83,8 @@ y.tab.c y.tab.h: parsetime.y 29 +parsetime.l: y.tab.h 38 +y.tab.o: y.tab.c y.tab.h
|
| /OK3568_Linux_fs/kernel/net/sched/ |
| H A D | sch_gred.c | 53 struct gred_sched_data *tab[MAX_DPs]; member 98 struct gred_sched_data *q = table->tab[i]; in gred_wred_mode_check() 105 if (table->tab[n] && table->tab[n]->prio == q->prio) in gred_wred_mode_check() 159 if (table->tab[i] && table->tab[i]->red_flags) in gred_per_vq_red_flags_used() 172 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) { in gred_enqueue() 175 q = t->tab[dp]; in gred_enqueue() 198 if (t->tab[i] && t->tab[i]->prio < q->prio && in gred_enqueue() 199 !red_is_idling(&t->tab[i]->vars)) in gred_enqueue() 200 qavg += t->tab[i]->vars.qavg; in gred_enqueue() 271 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) { in gred_dequeue() [all …]
|
| H A D | sch_choke.c | 72 struct sk_buff **tab; member 100 } while (q->tab[q->head] == NULL); in choke_zap_head_holes() 110 } while (q->tab[q->tail] == NULL); in choke_zap_tail_holes() 118 struct sk_buff *skb = q->tab[idx]; in choke_drop_by_idx() 120 q->tab[idx] = NULL; in choke_drop_by_idx() 188 skb = q->tab[*pidx]; in choke_peek_random() 193 return q->tab[*pidx = q->head]; in choke_peek_random() 269 q->tab[q->tail] = skb; in choke_enqueue() 295 skb = q->tab[q->head]; in choke_dequeue() 296 q->tab[q->head] = NULL; in choke_dequeue() [all …]
|
| /OK3568_Linux_fs/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 | 12 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via() argument 41 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_usbide() argument 59 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_usb() argument 68 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_usb2() argument 77 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_power() argument 88 pci_dev_t dev, struct pci_config_table *tab) in mpc85xx_config_via_ac97() argument
|
| /OK3568_Linux_fs/yocto/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
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gcc/gcc/ |
| H A D | 0002-aarch64-add-armv9-a-to-march.patch | 71 …@item @samp{armv8.4-a} @tab Armv8.4-A @tab @samp{armv8.3-a}, @samp{+flagm}, @samp{+fp16fml}, @samp… 72 …@item @samp{armv8.5-a} @tab Armv8.5-A @tab @samp{armv8.4-a}, @samp{+sb}, @samp{+ssbs}, @samp{+pred… 73 @item @samp{armv8.6-a} @tab Armv8.6-A @tab @samp{armv8.5-a}, @samp{+bf16}, @samp{+i8mm} 74 +@item @samp{armv8.7-a} @tab Armv8.7-A @tab @samp{armv8.6-a}, @samp{+ls64} 75 +@item @samp{armv9-a} @tab Armv9-A @tab @samp{armv8.5-a}, @samp{+sve}, @samp{+sve2} 76 @item @samp{armv8-r} @tab Armv8-R @tab @samp{armv8-r}
|
| /OK3568_Linux_fs/kernel/arch/arm/kernel/ |
| H A D | unwind.c | 506 struct unwind_table *tab = kmalloc(sizeof(*tab), GFP_KERNEL); in unwind_table_add() local 511 if (!tab) in unwind_table_add() 512 return tab; in unwind_table_add() 514 tab->start = (const struct unwind_idx *)start; in unwind_table_add() 515 tab->stop = (const struct unwind_idx *)(start + size); in unwind_table_add() 516 tab->origin = unwind_find_origin(tab->start, tab->stop); in unwind_table_add() 517 tab->begin_addr = text_addr; in unwind_table_add() 518 tab->end_addr = text_addr + text_size; in unwind_table_add() 521 list_add_tail(&tab->list, &unwind_tables); in unwind_table_add() 524 return tab; in unwind_table_add() [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/unfs3/unfs3/ |
| H A D | unfs3_parallel_build.patch | 31 y.tab.h y.tab.c: $(srcdir)/exports.y 32 +y.tab.h: y.tab.c 34 +y.tab.c: $(srcdir)/exports.y 37 …y.tab.o: y.tab.c $(srcdir)/exports.h $(top_srcdir)/nfs.h $(top_srcdir)/mount.h $(top_srcdir)/daemo…
|
| /OK3568_Linux_fs/yocto/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
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8822cs/hal/phydm/rtl8822c/ |
| H A D | phydm_regconfig8822c.c | 102 u8 tab = (u8)((data & 0x03c00000) >> 22); in phydm_agc_lower_bound_8822c() local 109 data, mp_gain, tab, rxbb_gain); in phydm_agc_lower_bound_8822c() 111 if (!dm->l_bnd_detect[tab] && rxbb_gain == RXBB_MAX_GAIN_8822C) { in phydm_agc_lower_bound_8822c() 112 dm->ofdm_rxagc_l_bnd[tab] = mp_gain; in phydm_agc_lower_bound_8822c() 113 dm->l_bnd_detect[tab] = true; in phydm_agc_lower_bound_8822c() 121 u8 tab = (u8)((data & 0x03c00000) >> 22); in phydm_agc_store_8822c() local 128 data, mp_gain, tab, rf_gain); in phydm_agc_store_8822c() 130 dm->agc_rf_gain_ori[tab][mp_gain] = rf_gain; in phydm_agc_store_8822c() 131 dm->agc_rf_gain[tab][mp_gain] = rf_gain; in phydm_agc_store_8822c() 132 if (tab > dm->agc_table_cnt) in phydm_agc_store_8822c() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/stressapptest/git/ |
| H A D | missing | 219 rm -f y.tab.c y.tab.h 226 cp "$SRCFILE" y.tab.c 230 cp "$SRCFILE" y.tab.h 235 if test ! -f y.tab.h; then 236 echo >y.tab.h 238 if test ! -f y.tab.c; then 239 echo 'main() { return 0; }' >y.tab.c
|
| /OK3568_Linux_fs/yocto/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
|
| /OK3568_Linux_fs/kernel/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 …]
|
| /OK3568_Linux_fs/yocto/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
|
| /OK3568_Linux_fs/kernel/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
|
| /OK3568_Linux_fs/kernel/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()
|