Home
last modified time | relevance | path

Searched full:tab (Results 1 – 25 of 883) sorted by relevance

12345678910>>...36

/OK3568_Linux_fs/u-boot/arch/x86/lib/
H A Dsfi.c33 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 Dfix-the-YACC-rule-to-fix-a-building-failure.patch32 -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/buildroot/package/pound/
H A D0002-fix-openssl-1.1.0.patch132 @@ -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 D0003-Support-for-libressl-coexisting-with-openssl-1.1.x.patch19 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/ethernet/freescale/
H A Dgianfar_ethtool.c825 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/buildroot/package/at/
H A D0004-Makefile-fix-parallel-build-failure.patch7 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/lib/
H A Dcrc32.c58 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];
143 * @tab: little-endian Ethernet table
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];
[all …]
/OK3568_Linux_fs/kernel/net/sched/
H A Dsch_gred.c53 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 Dsch_choke.c72 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/kernel/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/
H A Dphy_lcn.c925 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/yocto/poky/meta/recipes-devtools/gcc/gcc/
H A D0002-aarch64-add-armv9-a-to-march.patch71 …@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/yocto/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
/OK3568_Linux_fs/yocto/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
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8822cs/hal/phydm/rtl8822c/
H A Dphydm_regconfig8822c.c102 u8 tab = (u8)((data & 0x03c00000) >> 22); in phydm_agc_lower_bound_8822c() local
108 "data = 0x%x, mp_gain = 0x%x, tab = 0x%x, rxbb_gain = 0x%x\n", in phydm_agc_lower_bound_8822c()
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
127 "data = 0x%x, mp_gain = 0x%x, tab = 0x%x, rxbb_gain = 0x%x\n", in phydm_agc_store_8822c()
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()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/unfs3/unfs3/
H A Dunfs3_parallel_build.patch31 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/poky/bitbake/lib/toaster/toastergui/templates/
H A Dpackage_built_detail.html19 <div class="tab-content">
20 <div class="tab-pane active" id="files">
43 </div> <!-- tab-pane active -->
44 </div> <!-- tab-content -->
47 <div class="tab-content">
48 <div class="tab-pane active">
60 </div> <!-- tab-pane active -->
61 </div> <!-- tab-content -->
/OK3568_Linux_fs/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);
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/functional/
H A Dtest_functional_basic.py36 self.assertTrue(self.element_exists('#config-nav'),'Configuration Tab does not exist')
44 self.fail(msg='No Custom images tab available')
50 self.fail(msg='No Compatible image tab available')
56 self.fail(msg='No Compatible software recipe tab available')
62 self.fail(msg='No Compatible machines tab available')
68 self.fail(msg='No Compatible layers tab available')
74 self.fail(msg='No Bitbake variables tab available')
204 …d='project-topbar']/ul[@class='nav nav-tabs']/li[@id='topbar-configuration-tab']/a[@href="+'"'+pro…
205 …av nav-tabs']/li[@id='topbar-configuration-tab']/a[@href="+'"'+project_URL+'"'+"]").text), 'Config…
209 …nav nav-tabs']/li/a[@href="+'"'+project_URL+'builds/"'+"]").text), 'Builds tab in project topbar i…
[all …]
/OK3568_Linux_fs/yocto/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
/OK3568_Linux_fs/yocto/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
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/
H A Dtermios-c_oflag.h42 # define TABDLY 0014000 /* Select horizontal-tab delays: */
43 # define TAB0 0000000 /* Horizontal-tab delay type 0. */
44 # define TAB1 0004000 /* Horizontal-tab delay type 1. */
45 # define TAB2 0010000 /* Horizontal-tab delay type 2. */
55 #define VTDLY 0040000 /* Select vertical-tab delays: */
56 #define VT0 0000000 /* Vertical-tab delay type 0. */
57 #define VT1 0040000 /* Vertical-tab delay type 1. */
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/
H A Dtermios-c_oflag.h42 # define TABDLY 0014000 /* Select horizontal-tab delays: */
43 # define TAB0 0000000 /* Horizontal-tab delay type 0. */
44 # define TAB1 0004000 /* Horizontal-tab delay type 1. */
45 # define TAB2 0010000 /* Horizontal-tab delay type 2. */
55 #define VTDLY 0040000 /* Select vertical-tab delays: */
56 #define VT0 0000000 /* Vertical-tab delay type 0. */
57 #define VT1 0040000 /* Vertical-tab delay type 1. */
/OK3568_Linux_fs/kernel/
H A D.gitignore77 scripts/dtc/dtc-parser.tab.c
78 scripts/dtc/dtc-parser.tab.h
82 scripts/genksyms/parse.tab.c
83 scripts/genksyms/parse.tab.h
87 scripts/kconfig/zconf.tab.c
89 scripts/kconfig/parser.tab.c
90 scripts/kconfig/parser.tab.h
/OK3568_Linux_fs/u-boot/scripts/dtc/
H A D.dtc-parser.tab.o.cmd
/OK3568_Linux_fs/kernel/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()
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 …]

12345678910>>...36