/linux-4.4.14/drivers/net/ethernet/freescale/ |
D | gianfar_ethtool.c | 925 static void gfar_set_mask(u32 mask, struct filer_table *tab) in gfar_set_mask() argument 927 tab->fe[tab->index].ctrl = RQFCR_AND | RQFCR_PID_MASK | RQFCR_CMP_EXACT; in gfar_set_mask() 928 tab->fe[tab->index].prop = mask; in gfar_set_mask() 929 tab->index++; in gfar_set_mask() 933 static void gfar_set_parse_bits(u32 value, u32 mask, struct filer_table *tab) in gfar_set_parse_bits() argument 935 gfar_set_mask(mask, tab); in gfar_set_parse_bits() 936 tab->fe[tab->index].ctrl = RQFCR_CMP_EXACT | RQFCR_PID_PARSE | in gfar_set_parse_bits() 938 tab->fe[tab->index].prop = value; in gfar_set_parse_bits() 939 tab->index++; in gfar_set_parse_bits() 943 struct filer_table *tab) in gfar_set_general_attribute() argument [all …]
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmsmac/phy/ |
D | phy_lcn.c | 991 struct phytbl_info tab; in wlc_lcnphy_common_read_table() local 992 tab.tbl_id = tbl_id; in wlc_lcnphy_common_read_table() 993 tab.tbl_ptr = tbl_ptr; in wlc_lcnphy_common_read_table() 994 tab.tbl_len = tbl_len; in wlc_lcnphy_common_read_table() 995 tab.tbl_width = tbl_width; in wlc_lcnphy_common_read_table() 996 tab.tbl_offset = tbl_offset; in wlc_lcnphy_common_read_table() 997 wlc_lcnphy_read_table(pi, &tab); in wlc_lcnphy_common_read_table() 1006 struct phytbl_info tab; in wlc_lcnphy_common_write_table() local 1007 tab.tbl_id = tbl_id; in wlc_lcnphy_common_write_table() 1008 tab.tbl_ptr = tbl_ptr; in wlc_lcnphy_common_write_table() [all …]
|
/linux-4.4.14/lib/ |
D | crc32.c | 57 crc32_body(u32 crc, unsigned char const *buf, size_t len, const u32 (*tab)[256]) 77 const u32 *t0=tab[0], *t1=tab[1], *t2=tab[2], *t3=tab[3]; 79 const u32 *t4 = tab[4], *t5 = tab[5], *t6 = tab[6], *t7 = tab[7]; 146 size_t len, const u32 (*tab)[256], 159 crc = (crc >> 2) ^ tab[0][crc & 3]; 160 crc = (crc >> 2) ^ tab[0][crc & 3]; 161 crc = (crc >> 2) ^ tab[0][crc & 3]; 162 crc = (crc >> 2) ^ tab[0][crc & 3]; 167 crc = (crc >> 4) ^ tab[0][crc & 15]; 168 crc = (crc >> 4) ^ tab[0][crc & 15]; [all …]
|
D | gen_crc32table.c | 36 uint32_t (*tab)[256]) in crc32init_le_generic() 41 tab[0][0] = 0; in crc32init_le_generic() 46 tab[0][i + j] = crc ^ tab[0][j]; in crc32init_le_generic() 49 crc = tab[0][i]; in crc32init_le_generic() 51 crc = tab[0][crc & 0xff] ^ (crc >> 8); in crc32init_le_generic() 52 tab[j][i] = crc; in crc32init_le_generic()
|
D | dynamic_debug.c | 840 int ddebug_add_module(struct _ddebug *tab, unsigned int n, in ddebug_add_module() argument 856 dt->ddebugs = tab; in ddebug_add_module()
|
D | bch.c | 1082 uint32_t data, hi, lo, *tab; in build_mod8_tables() local 1093 tab = bch->mod8_tab + (b*256+i)*l; in build_mod8_tables() 1103 tab[j] ^= hi|lo; in build_mod8_tables()
|
/linux-4.4.14/scripts/genksyms/ |
D | Makefile | 5 genksyms-objs := genksyms.o parse.tab.o lex.lex.o 8 HOSTCFLAGS_parse.tab.o := -I$(src) 12 $(obj)/lex.lex.o: $(obj)/keywords.hash.c $(obj)/parse.tab.h 14 clean-files := keywords.hash.c lex.lex.c parse.tab.c parse.tab.h
|
D | .gitignore | 3 *.tab.c 4 *.tab.h
|
D | lex.lex.c_shipped | 567 #include "parse.tab.h"
|
/linux-4.4.14/net/sched/ |
D | sch_gred.c | 54 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() 159 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) { in gred_enqueue() 162 q = t->tab[dp]; in gred_enqueue() 185 if (t->tab[i] && t->tab[i]->prio < q->prio && in gred_enqueue() 186 !red_is_idling(&t->tab[i]->vars)) in gred_enqueue() 187 qavg += t->tab[i]->vars.qavg; in gred_enqueue() 258 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) { in gred_dequeue() 290 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) { in gred_drop() [all …]
|
D | sch_choke.c | 76 struct sk_buff **tab; member 104 } while (q->tab[q->head] == NULL); in choke_zap_head_holes() 114 } while (q->tab[q->tail] == NULL); in choke_zap_tail_holes() 121 struct sk_buff *skb = q->tab[idx]; in choke_drop_by_idx() 123 q->tab[idx] = NULL; in choke_drop_by_idx() 236 skb = q->tab[*pidx]; in choke_peek_random() 241 return q->tab[*pidx = q->head]; in choke_peek_random() 326 q->tab[q->tail] = skb; in choke_enqueue() 358 skb = q->tab[q->head]; in choke_dequeue() 359 q->tab[q->head] = NULL; in choke_dequeue() [all …]
|
D | sch_api.c | 390 struct qdisc_rate_table *qdisc_get_rtab(struct tc_ratespec *r, struct nlattr *tab) in qdisc_get_rtab() argument 394 if (tab == NULL || r->rate == 0 || r->cell_log == 0 || in qdisc_get_rtab() 395 nla_len(tab) != TC_RTAB_SIZE) in qdisc_get_rtab() 400 !memcmp(&rtab->data, nla_data(tab), 1024)) { in qdisc_get_rtab() 410 memcpy(rtab->data, nla_data(tab), 1024); in qdisc_get_rtab() 420 void qdisc_put_rtab(struct qdisc_rate_table *tab) in qdisc_put_rtab() argument 424 if (!tab || --tab->refcnt) in qdisc_put_rtab() 430 if (rtab == tab) { in qdisc_put_rtab() 453 u16 *tab = NULL; in qdisc_get_stab() local 467 tab = nla_data(tb[TCA_STAB_DATA]); in qdisc_get_stab() [all …]
|
/linux-4.4.14/arch/arm/kernel/ |
D | unwind.c | 518 struct unwind_table *tab = kmalloc(sizeof(*tab), GFP_KERNEL); in unwind_table_add() local 523 if (!tab) in unwind_table_add() 524 return tab; in unwind_table_add() 526 tab->start = (const struct unwind_idx *)start; in unwind_table_add() 527 tab->stop = (const struct unwind_idx *)(start + size); in unwind_table_add() 528 tab->origin = unwind_find_origin(tab->start, tab->stop); in unwind_table_add() 529 tab->begin_addr = text_addr; in unwind_table_add() 530 tab->end_addr = text_addr + text_size; in unwind_table_add() 533 list_add_tail(&tab->list, &unwind_tables); in unwind_table_add() 536 return tab; in unwind_table_add() [all …]
|
/linux-4.4.14/scripts/dtc/ |
D | Makefile | 8 dtc-objs += dtc-lexer.lex.o dtc-parser.tab.o 25 HOSTCFLAGS_dtc-parser.tab.o := $(HOSTCFLAGS_DTC) 28 $(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h 31 clean-files := dtc-lexer.lex.c dtc-parser.tab.c dtc-parser.tab.h
|
D | dtc-parser.tab.c_shipped | 83 #line 84 "dtc-parser.tab.c" /* yacc.c:339 */ 102 by #include "dtc-parser.tab.h". */ 166 #line 167 "dtc-parser.tab.c" /* yacc.c:355 */ 195 #line 196 "dtc-parser.tab.c" /* yacc.c:358 */ 1471 #line 1472 "dtc-parser.tab.c" /* yacc.c:1646 */ 1479 #line 1480 "dtc-parser.tab.c" /* yacc.c:1646 */ 1487 #line 1488 "dtc-parser.tab.c" /* yacc.c:1646 */ 1495 #line 1496 "dtc-parser.tab.c" /* yacc.c:1646 */ 1504 #line 1505 "dtc-parser.tab.c" /* yacc.c:1646 */ 1512 #line 1513 "dtc-parser.tab.c" /* yacc.c:1646 */ [all …]
|
D | .gitignore | 3 dtc-parser.tab.c 4 dtc-parser.tab.h
|
D | Makefile.dtc | 17 DTC_GEN_SRCS = dtc-lexer.lex.c dtc-parser.tab.c
|
D | dtc-parser.tab.h_shipped | 96 #line 97 "dtc-parser.tab.h" /* yacc.c:1909 */
|
D | dtc-lexer.lex.c_shipped | 638 #include "dtc-parser.tab.h"
|
/linux-4.4.14/arch/x86/platform/uv/ |
D | bios_uv.c | 33 struct uv_systab *tab = &uv_systab; in uv_bios_call() local 36 if (!tab->function) in uv_bios_call() 42 ret = efi_call((void *)__va(tab->function), (u64)which, in uv_bios_call() 190 struct uv_systab *tab; in uv_bios_init() local 199 tab = (struct uv_systab *)ioremap(efi.uv_systab, in uv_bios_init() 201 if (strncmp(tab->signature, "UVST", 4) != 0) in uv_bios_init() 207 memcpy(&uv_systab, tab, sizeof(struct uv_systab)); in uv_bios_init() 208 iounmap(tab); in uv_bios_init()
|
/linux-4.4.14/arch/arm/plat-samsung/ |
D | init.c | 37 struct cpu_table *tab, in s3c_lookup_cpu() argument 40 for (; count != 0; count--, tab++) { in s3c_lookup_cpu() 41 if ((idcode & tab->idmask) == (tab->idcode & tab->idmask)) in s3c_lookup_cpu() 42 return tab; in s3c_lookup_cpu()
|
/linux-4.4.14/drivers/media/dvb-frontends/ |
D | cxd2820r_c.c | 33 struct reg_val_mask tab[] = { in cxd2820r_set_frontend_c() local 59 for (i = 0; i < ARRAY_SIZE(tab); i++) { in cxd2820r_set_frontend_c() 60 ret = cxd2820r_wr_reg_mask(priv, tab[i].reg, in cxd2820r_set_frontend_c() 61 tab[i].val, tab[i].mask); in cxd2820r_set_frontend_c() 311 struct reg_val_mask tab[] = { in cxd2820r_sleep_c() local 323 for (i = 0; i < ARRAY_SIZE(tab); i++) { in cxd2820r_sleep_c() 324 ret = cxd2820r_wr_reg_mask(priv, tab[i].reg, tab[i].val, in cxd2820r_sleep_c() 325 tab[i].mask); in cxd2820r_sleep_c()
|
D | cxd2820r_t2.c | 38 struct reg_val_mask tab[] = { in cxd2820r_set_frontend_t2() local 101 for (i = 0; i < ARRAY_SIZE(tab); i++) { in cxd2820r_set_frontend_t2() 102 ret = cxd2820r_wr_reg_mask(priv, tab[i].reg, in cxd2820r_set_frontend_t2() 103 tab[i].val, tab[i].mask); in cxd2820r_set_frontend_t2() 407 struct reg_val_mask tab[] = { in cxd2820r_sleep_t2() local 418 for (i = 0; i < ARRAY_SIZE(tab); i++) { in cxd2820r_sleep_t2() 419 ret = cxd2820r_wr_reg_mask(priv, tab[i].reg, tab[i].val, in cxd2820r_sleep_t2() 420 tab[i].mask); in cxd2820r_sleep_t2()
|
D | cxd2820r_t.c | 42 struct reg_val_mask tab[] = { in cxd2820r_set_frontend_t() local 83 for (i = 0; i < ARRAY_SIZE(tab); i++) { in cxd2820r_set_frontend_t() 84 ret = cxd2820r_wr_reg_mask(priv, tab[i].reg, in cxd2820r_set_frontend_t() 85 tab[i].val, tab[i].mask); in cxd2820r_set_frontend_t() 417 struct reg_val_mask tab[] = { in cxd2820r_sleep_t() local 429 for (i = 0; i < ARRAY_SIZE(tab); i++) { in cxd2820r_sleep_t() 430 ret = cxd2820r_wr_reg_mask(priv, tab[i].reg, tab[i].val, in cxd2820r_sleep_t() 431 tab[i].mask); in cxd2820r_sleep_t()
|
D | m88rs2000.c | 385 struct inittab *tab) in m88rs2000_tab_set() argument 389 if (tab == NULL) in m88rs2000_tab_set() 393 switch (tab[i].cmd) { in m88rs2000_tab_set() 395 ret = m88rs2000_writereg(state, tab[i].reg, in m88rs2000_tab_set() 396 tab[i].val); in m88rs2000_tab_set() 399 if (tab[i].reg > 0) in m88rs2000_tab_set() 400 mdelay(tab[i].reg); in m88rs2000_tab_set() 403 if (tab[i].reg == 0xaa && tab[i].val == 0xff) in m88rs2000_tab_set()
|
D | stb0899_drv.c | 940 static int stb0899_table_lookup(const struct stb0899_tab *tab, int max, int val) in stb0899_table_lookup() argument 945 if (val < tab[min].read) in stb0899_table_lookup() 946 res = tab[min].real; in stb0899_table_lookup() 947 else if (val >= tab[max].read) in stb0899_table_lookup() 948 res = tab[max].real; in stb0899_table_lookup() 952 if (val >= tab[min].read && val < tab[med].read) in stb0899_table_lookup() 957 res = ((val - tab[min].read) * in stb0899_table_lookup() 958 (tab[max].real - tab[min].real) / in stb0899_table_lookup() 959 (tab[max].read - tab[min].read)) + in stb0899_table_lookup() 960 tab[min].real; in stb0899_table_lookup()
|
D | tda10071.c | 773 struct tda10071_reg_val_mask tab[] = { in tda10071_init() local 834 for (i = 0; i < ARRAY_SIZE(tab); i++) { in tda10071_init() 835 ret = tda10071_wr_reg_mask(dev, tab[i].reg, in tda10071_init() 836 tab[i].val, tab[i].mask); in tda10071_init() 1056 struct tda10071_reg_val_mask tab[] = { in tda10071_sleep() local 1082 for (i = 0; i < ARRAY_SIZE(tab); i++) { in tda10071_sleep() 1083 ret = tda10071_wr_reg_mask(dev, tab[i].reg, tab[i].val, in tda10071_sleep() 1084 tab[i].mask); in tda10071_sleep()
|
D | af9033.c | 177 const struct reg_val *tab, int tab_len) in af9033_wr_reg_val_tab() argument 191 buf[j] = tab[i].val; in af9033_wr_reg_val_tab() 193 if (i == tab_len - 1 || tab[i].reg != tab[i + 1].reg - 1) { in af9033_wr_reg_val_tab() 194 ret = af9033_wr_regs(dev, tab[i].reg - j, buf, j + 1); in af9033_wr_reg_val_tab() 246 struct reg_val_mask tab[] = { in af9033_init() local 314 for (i = 0; i < ARRAY_SIZE(tab); i++) { in af9033_init() 315 ret = af9033_wr_reg_mask(dev, tab[i].reg, tab[i].val, in af9033_init() 316 tab[i].mask); in af9033_init()
|
D | tda10023.c | 112 static void tda10023_writetab(struct tda10023_state* state, u8* tab) in tda10023_writetab() argument 116 r=*tab++; in tda10023_writetab() 117 m=*tab++; in tda10023_writetab() 118 v=*tab++; in tda10023_writetab()
|
D | au8522_dig.c | 227 static int au8522_mse2snr_lookup(struct mse2snr_tab *tab, int sz, int mse, in au8522_mse2snr_lookup() argument 234 if (mse < tab[i].val) { in au8522_mse2snr_lookup() 235 *snr = tab[i].data; in au8522_mse2snr_lookup()
|
D | stv090x.c | 3616 static int stv090x_table_lookup(const struct stv090x_tab *tab, int max, int val) in stv090x_table_lookup() argument 3621 if ((val >= tab[min].read && val < tab[max].read) || in stv090x_table_lookup() 3622 (val >= tab[max].read && val < tab[min].read)) { in stv090x_table_lookup() 3625 if ((val >= tab[min].read && val < tab[med].read) || in stv090x_table_lookup() 3626 (val >= tab[med].read && val < tab[min].read)) in stv090x_table_lookup() 3631 res = ((val - tab[min].read) * in stv090x_table_lookup() 3632 (tab[max].real - tab[min].real) / in stv090x_table_lookup() 3633 (tab[max].read - tab[min].read)) + in stv090x_table_lookup() 3634 tab[min].real; in stv090x_table_lookup() 3636 if (tab[min].read < tab[max].read) { in stv090x_table_lookup() [all …]
|
D | rtl2830.c | 63 struct rtl2830_reg_val_mask tab[] = { in rtl2830_init() local 102 for (i = 0; i < ARRAY_SIZE(tab); i++) { in rtl2830_init() 103 ret = rtl2830_update_bits(client, tab[i].reg, tab[i].mask, in rtl2830_init() 104 tab[i].val); in rtl2830_init()
|
D | hd29l2.c | 732 static const struct reg_val tab[] = { in hd29l2_init() local 756 for (i = 0; i < ARRAY_SIZE(tab); i++) { in hd29l2_init() 757 ret = hd29l2_wr_reg(priv, tab[i].reg, tab[i].val); in hd29l2_init()
|
D | m88ds3103.c | 44 const struct m88ds3103_reg_val *tab, int tab_len) in m88ds3103_wr_reg_val_tab() argument 58 buf[j] = tab[i].val; in m88ds3103_wr_reg_val_tab() 60 if (i == tab_len - 1 || tab[i].reg != tab[i + 1].reg - 1 || in m88ds3103_wr_reg_val_tab() 62 ret = regmap_bulk_write(dev->regmap, tab[i].reg - j, buf, j + 1); in m88ds3103_wr_reg_val_tab()
|
/linux-4.4.14/drivers/hid/ |
D | hid-debug.c | 527 static void tab(int n, struct seq_file *f) { in tab() function 535 tab(n, f); in hid_dump_field() 540 tab(n, f); in hid_dump_field() 545 tab(n, f); in hid_dump_field() 549 tab(n, f); seq_printf(f, "Usage(%d)\n", field->maxusage); in hid_dump_field() 551 tab(n+2, f); hid_resolv_usage(field->usage[j].hid, f); seq_printf(f, "\n"); in hid_dump_field() 554 tab(n, f); seq_printf(f, "Logical Minimum(%d)\n", field->logical_minimum); in hid_dump_field() 555 tab(n, f); seq_printf(f, "Logical Maximum(%d)\n", field->logical_maximum); in hid_dump_field() 558 tab(n, f); seq_printf(f, "Physical Minimum(%d)\n", field->physical_minimum); in hid_dump_field() 559 tab(n, f); seq_printf(f, "Physical Maximum(%d)\n", field->physical_maximum); in hid_dump_field() [all …]
|
/linux-4.4.14/scripts/kconfig/ |
D | .zconf.tab.o.cmd | 1 …tab.o := gcc -Wp,-MD,scripts/kconfig/.zconf.tab.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes… 3 source_scripts/kconfig/zconf.tab.o := scripts/kconfig/zconf.tab.c 5 deps_scripts/kconfig/zconf.tab.o := \ 106 scripts/kconfig/zconf.tab.o: $(deps_scripts/kconfig/zconf.tab.o) 108 $(deps_scripts/kconfig/zconf.tab.o):
|
D | Makefile | 181 conf-objs := conf.o zconf.tab.o 182 mconf-objs := mconf.o zconf.tab.o $(lxdialog) 183 nconf-objs := nconf.o zconf.tab.o nconf.gui.o 184 kxgettext-objs := kxgettext.o zconf.tab.o 186 qconf-objs := zconf.tab.o 187 gconf-objs := gconf.o zconf.tab.o 192 clean-files += zconf.tab.c zconf.lex.c zconf.hash.c gconf.glade.h 208 HOSTCFLAGS_zconf.tab.o := -I$(src) 281 $(obj)/zconf.tab.o: $(obj)/zconf.lex.c $(obj)/zconf.hash.c
|
D | .gitignore | 6 *.tab.c 7 *.tab.h
|
D | .conf.cmd | 1 …s/kconfig/conf := gcc -o scripts/kconfig/conf scripts/kconfig/conf.o scripts/kconfig/zconf.tab.o
|
/linux-4.4.14/drivers/scsi/aic7xxx/aicasm/ |
D | Makefile | 64 mv $(<:.y=).tab.c $(<:.y=.c) 65 mv $(<:.y=).tab.h $(<:.y=.h) 73 mv $(<:.y=).tab.c $(<:.y=.c) 74 mv $(<:.y=).tab.h $(<:.y=.h)
|
/linux-4.4.14/include/net/ |
D | pkt_sched.h | 97 struct nlattr *tab); 98 void qdisc_put_rtab(struct qdisc_rate_table *tab); 99 void qdisc_put_stab(struct qdisc_size_table *tab);
|
/linux-4.4.14/drivers/video/fbdev/core/ |
D | sysimgblt.c | 194 const u32 *tab = NULL; in fast_imageblit() local 199 tab = fb_be_math(p) ? cfb_tab8_be : cfb_tab8_le; in fast_imageblit() 202 tab = fb_be_math(p) ? cfb_tab16_be : cfb_tab16_le; in fast_imageblit() 206 tab = cfb_tab32; in fast_imageblit() 228 end_mask = tab[(*src >> shift) & bit_mask]; in fast_imageblit()
|
D | cfbimgblt.c | 224 const u32 *tab = NULL; in fast_imageblit() local 229 tab = fb_be_math(p) ? cfb_tab8_be : cfb_tab8_le; in fast_imageblit() 232 tab = fb_be_math(p) ? cfb_tab16_be : cfb_tab16_le; in fast_imageblit() 236 tab = cfb_tab32; in fast_imageblit() 256 end_mask = tab[(*src >> shift) & bit_mask]; in fast_imageblit()
|
/linux-4.4.14/drivers/media/usb/tm6000/ |
D | tm6000-core.c | 571 struct reg_init *tab; in tm6000_init() local 594 tab = tm6010_init_tab; in tm6000_init() 597 tab = tm6000_init_tab; in tm6000_init() 603 rc = tm6000_set_reg(dev, tab[i].req, tab[i].reg, tab[i].val); in tm6000_init() 607 tab[i].req, tab[i].reg, tab[i].val); in tm6000_init()
|
/linux-4.4.14/security/selinux/ |
D | nlmsgtab.c | 136 static int nlmsg_perm(u16 nlmsg_type, u32 *perm, struct nlmsg_perm *tab, size_t tabsize) in nlmsg_perm() argument 141 if (nlmsg_type == tab[i].nlmsg_type) { in nlmsg_perm() 142 *perm = tab[i].perm; in nlmsg_perm()
|
/linux-4.4.14/kernel/debug/kdb/ |
D | kdb_io.c | 214 int tab = 0; in kdb_read() local 239 tab = 0; in kdb_read() 323 if (tab < 2) in kdb_read() 324 ++tab; in kdb_read() 341 if (tab == 2 && count > 0) { in kdb_read() 362 } else if (tab != 2 && count > 0) { in kdb_read()
|
/linux-4.4.14/net/core/ |
D | rtnetlink.c | 124 struct rtnl_link *tab; in rtnl_get_doit() local 127 tab = rtnl_msg_handlers[protocol]; in rtnl_get_doit() 129 tab = NULL; in rtnl_get_doit() 131 if (tab == NULL || tab[msgindex].doit == NULL) in rtnl_get_doit() 132 tab = rtnl_msg_handlers[PF_UNSPEC]; in rtnl_get_doit() 134 return tab[msgindex].doit; in rtnl_get_doit() 139 struct rtnl_link *tab; in rtnl_get_dumpit() local 142 tab = rtnl_msg_handlers[protocol]; in rtnl_get_dumpit() 144 tab = NULL; in rtnl_get_dumpit() 146 if (tab == NULL || tab[msgindex].dumpit == NULL) in rtnl_get_dumpit() [all …]
|
/linux-4.4.14/Documentation/ |
D | CodeOfConflict | 18 <tab@lists.linux-foundation.org>, or the individual members, and they 22 http://www.linuxfoundation.org/programs/advisory-councils/tab
|
D | dontdiff | 50 *.tab.c 51 *.tab.h
|
D | HOWTO | 411 Make sure you use a mail program that does not mangle spaces and tab
|
D | CodingStyle | 559 are indented with one tab, while help text is indented an additional two
|
/linux-4.4.14/scripts/ |
D | Makefile.lib | 210 .PRECIOUS: $(src)/%.tab.c_shipped 211 $(src)/%.tab.c_shipped: $(src)/%.y 217 .PRECIOUS: $(src)/%.tab.h_shipped 218 $(src)/%.tab.h_shipped: $(src)/%.y
|
/linux-4.4.14/drivers/video/fbdev/aty/ |
D | mach64_gx.c | 89 } tab[3] = { in aty_set_dac_514() local 112 aty_st_514(0x04, tab[i].pixel_dly, par); /* Horizontal Sync Control */ in aty_set_dac_514() 115 aty_st_514(0x71, tab[i].misc2_cntl, par); /* Misc Control 2 */ in aty_set_dac_514() 116 aty_st_514(0x0a, tab[i].pixel_rep, par); /* Pixel Format */ in aty_set_dac_514() 117 aty_st_514(tab[i].pixel_cntl_index, tab[i].pixel_cntl_v1, par); in aty_set_dac_514()
|
/linux-4.4.14/arch/arm/include/asm/ |
D | unwind.h | 50 extern void unwind_table_del(struct unwind_table *tab);
|
/linux-4.4.14/drivers/media/pci/ttpci/ |
D | av7110_ca.c | 93 struct dvb_ringbuffer *tab[] = { cirbuf, ciwbuf, NULL }, **p; in ci_ll_init() local 96 for (p = tab; *p; p++) { in ci_ll_init() 99 while (p-- != tab) { in ci_ll_init()
|
/linux-4.4.14/arch/powerpc/crypto/ |
D | Makefile | 13 aes-ppc-spe-y := aes-spe-core.o aes-spe-keys.o aes-tab-4k.o aes-spe-modes.o aes-spe-glue.o
|
D | aes-spe-modes.S | 84 #define INITIALIZE_CRYPT(tab,nr32bitregs) \ argument 87 lis rT0,tab@h; /* en-/decryption table pointer */ \ 89 ori rT0,rT0,tab@l; \
|
D | aes-spe-core.S | 33 #define LBZ(out, tab, off) \ argument 34 lbz out,off(tab); /* load byte */
|
/linux-4.4.14/drivers/net/wireless/b43/ |
D | wa.c | 284 const u16 *tab; in b43_wa_msst() local 287 tab = b43_tab_sigmasqr1; in b43_wa_msst() 289 tab = b43_tab_sigmasqr2; in b43_wa_msst() 297 i, tab[i]); in b43_wa_msst()
|
D | phy_g.c | 2356 u8 *tab; in b43_generate_dyn_tssi2dbm_tab() local 2359 tab = kmalloc(64, GFP_KERNEL); in b43_generate_dyn_tssi2dbm_tab() 2360 if (!tab) { in b43_generate_dyn_tssi2dbm_tab() 2366 err = b43_tssi2dbm_entry(tab, i, pab0, pab1, pab2); in b43_generate_dyn_tssi2dbm_tab() 2370 kfree(tab); in b43_generate_dyn_tssi2dbm_tab() 2375 return tab; in b43_generate_dyn_tssi2dbm_tab()
|
/linux-4.4.14/drivers/media/usb/dvb-usb-v2/ |
D | af9035.c | 1652 struct reg_val_mask tab[] = { in af9035_init() local 1678 for (i = 0; i < ARRAY_SIZE(tab); i++) { in af9035_init() 1679 ret = af9035_wr_reg_mask(d, tab[i].reg, tab[i].val, in af9035_init() 1680 tab[i].mask); in af9035_init() 1699 struct reg_val_mask tab[] = { in it930x_init() local 1760 for (i = 0; i < ARRAY_SIZE(tab); i++) { in it930x_init() 1761 ret = af9035_wr_reg_mask(d, tab[i].reg, in it930x_init() 1762 tab[i].val, tab[i].mask); in it930x_init()
|
/linux-4.4.14/include/linux/ |
D | dynamic_debug.h | 39 int ddebug_add_module(struct _ddebug *tab, unsigned int n,
|
/linux-4.4.14/drivers/net/wireless/cw1200/ |
D | debug.c | 316 #define PUT_COUNTER(tab, name) \ in cw1200_counters_show() argument 317 seq_printf(seq, "%s:" tab "%d\n", #name, \ in cw1200_counters_show()
|
/linux-4.4.14/Documentation/DocBook/ |
D | gadget.xml.db | 63 API-usb-string-ids-tab
|
/linux-4.4.14/drivers/net/wan/ |
D | ixp4xx_hss.c | 586 struct desc *tab; in queue_get_desc() local 593 tab = is_tx ? tx_desc_ptr(port, 0) : rx_desc_ptr(port, 0); in queue_get_desc() 596 debug_desc(phys, &tab[n_desc]); in queue_get_desc() 597 BUG_ON(tab[n_desc].next); in queue_get_desc()
|
/linux-4.4.14/drivers/acpi/apei/ |
D | einj.c | 104 #define EINJ_TAB_ENTRY(tab) \ argument 105 ((struct acpi_whea_header *)((char *)(tab) + \
|
D | erst.c | 50 #define ERST_TAB_ENTRY(tab) \ argument 51 ((struct acpi_whea_header *)((char *)(tab) + \
|
/linux-4.4.14/drivers/net/hyperv/ |
D | netvsc.c | 1075 u32 count, *tab; in netvsc_send_table() local 1088 tab = (u32 *)((unsigned long)&nvmsg->msg.v5_msg.send_table + in netvsc_send_table() 1092 nvscdev->send_table[i] = tab[i]; in netvsc_send_table()
|
/linux-4.4.14/drivers/sn/ |
D | ioc3.c | 488 static int find_slot(void **tab, int max) in find_slot() argument 492 if(!(tab[i])) in find_slot()
|
/linux-4.4.14/drivers/net/ethernet/xscale/ |
D | ixp4xx_eth.c | 631 struct desc *tab; in queue_get_desc() local 638 tab = is_tx ? tx_desc_ptr(port, 0) : rx_desc_ptr(port, 0); in queue_get_desc() 641 debug_desc(phys, &tab[n_desc]); in queue_get_desc() 642 BUG_ON(tab[n_desc].next); in queue_get_desc()
|
/linux-4.4.14/Documentation/frv/ |
D | configuring.txt | 9 The most important setting is in the "MMU support options" tab (the first
|
D | gdbstub.txt | 33 the following things on the "Kernel Hacking" tab:
|
D | features.txt | 32 type and features" configuration tab.
|
/linux-4.4.14/drivers/media/platform/s5p-jpeg/ |
D | jpeg-core.c | 640 unsigned long tab, int len) in s5p_jpeg_set_qtbl() argument 645 writel((unsigned int)qtbl[i], regs + tab + (i * 0x04)); in s5p_jpeg_set_qtbl() 666 unsigned long tab, int len) in s5p_jpeg_set_htbl() argument 671 writel((unsigned int)htbl[i], regs + tab + (i * 0x04)); in s5p_jpeg_set_htbl() 704 unsigned long tab, int len) in exynos4_jpeg_set_tbl() argument 714 writel(dword, regs + tab + i); in exynos4_jpeg_set_tbl()
|
/linux-4.4.14/drivers/input/mouse/ |
D | appletouch.c | 233 #define dbg_dump(msg, tab) \ argument 238 printk(" %02x", tab[__i]); \
|
/linux-4.4.14/drivers/media/usb/gspca/ |
D | vc032x.c | 3093 const u8 *tab, u8 tabsize, u16 addr) in put_tab_to_reg() argument 3099 reg_w(gspca_dev, 0xa0, tab[j], ad++); in put_tab_to_reg()
|
/linux-4.4.14/Documentation/input/ |
D | yealink.txt | 141 - The tab '\t'and '\n' char does not overwrite the original content.
|
/linux-4.4.14/Documentation/zh_CN/ |
D | CodingStyle | 425 (setq tab-width 8)
|
/linux-4.4.14/drivers/iio/light/ |
D | ltr501.c | 183 static int ltr501_match_samp_freq(const struct ltr501_samp_table *tab, in ltr501_match_samp_freq() argument 191 if (tab[i].freq_val == freq) in ltr501_match_samp_freq()
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
D | radeon_drv.h | 2117 #define OUT_RING_TABLE( tab, sz ) do { \ argument 2119 int *_tab = (int *)(tab); \
|
/linux-4.4.14/drivers/media/usb/pvrusb2/ |
D | pvrusb2-hdw.c | 951 #define DEFENUM(tab) \ argument 953 .def.type_enum.count = ARRAY_SIZE(tab), \ 954 .def.type_enum.value_names = tab 959 #define DEFMASK(msk,tab) \ argument 962 .def.type_bitmask.bit_names = tab
|
/linux-4.4.14/Documentation/usb/ |
D | gadget_hid.txt | 158 {.opt = "--tab", .val = 0x2b},
|
D | WUSB-Design-overview.txt | 176 is chartered, among other things, to keep the tab of how the UWB radio
|
/linux-4.4.14/arch/x86/crypto/ |
D | sha512-ssse3-asm.S | 170 # by one tab. Vectored instructions (for the message scheduler) are indented
|
D | aesni-intel_avx-x86_64.S | 118 ## throughout the code, one tab and two tab indentations are used. one tab is
|
/linux-4.4.14/drivers/zorro/ |
D | zorro.ids | 12 # product product_name <-- single tab
|
/linux-4.4.14/Documentation/video4linux/ |
D | v4l2-controls.txt | 727 A fully featured GUI can make a dialog with multiple tabs with each tab 729 each tab can be found by querying a special control with ID <control class | 1>.
|
/linux-4.4.14/Documentation/scsi/ |
D | tmscsim.txt | 192 tab, comma, = and : as separators.
|
D | ChangeLog.lpfc | 36 * Fixed a bunch of mixed tab/space indentation. 720 * Trivial: fix a few long lines and a soft tab.
|