/linux-4.4.14/drivers/input/ |
D | input-mt.c | 44 struct input_mt *mt = dev->mt; in input_mt_init_slots() local 49 if (mt) in input_mt_init_slots() 50 return mt->num_slots != num_slots ? -EINVAL : 0; in input_mt_init_slots() 52 mt = kzalloc(sizeof(*mt) + num_slots * sizeof(*mt->slots), GFP_KERNEL); in input_mt_init_slots() 53 if (!mt) in input_mt_init_slots() 56 mt->num_slots = num_slots; in input_mt_init_slots() 57 mt->flags = flags; in input_mt_init_slots() 86 mt->red = kcalloc(n2, sizeof(*mt->red), GFP_KERNEL); in input_mt_init_slots() 87 if (!mt->red) in input_mt_init_slots() 93 input_mt_set_value(&mt->slots[i], ABS_MT_TRACKING_ID, -1); in input_mt_init_slots() [all …]
|
D | input.c | 218 struct input_mt *mt = dev->mt; in input_handle_abs_event() local 227 if (mt && *pval >= 0 && *pval < mt->num_slots) in input_handle_abs_event() 228 mt->slot = *pval; in input_handle_abs_event() 237 } else if (mt) { in input_handle_abs_event() 238 pold = &mt->slots[mt->slot].abs[code - ABS_MT_FIRST]; in input_handle_abs_event() 257 if (is_mt_event && mt && mt->slot != input_abs_get_val(dev, ABS_MT_SLOT)) { in input_handle_abs_event() 258 input_abs_set_val(dev, ABS_MT_SLOT, mt->slot); in input_handle_abs_event() 391 v->value = dev->mt->slot; in input_handle_event() 1969 if (dev->mt) { in input_estimate_events_per_packet() 1970 mt_slots = dev->mt->num_slots; in input_estimate_events_per_packet()
|
D | Makefile | 8 input-core-y := input.o input-compat.o input-mt.o ff-core.o
|
D | evdev.c | 953 const struct input_mt *mt = dev->mt; in evdev_handle_mt_request() local 960 if (!mt || !input_is_mt_value(code)) in evdev_handle_mt_request() 964 for (i = 0; i < mt->num_slots && i < max_slots; i++) { in evdev_handle_mt_request() 965 int value = input_mt_get_value(&mt->slots[i], code); in evdev_handle_mt_request()
|
/linux-4.4.14/drivers/video/fbdev/matrox/ |
D | matroxfb_g450.c | 237 struct my_timming *mt, const struct output_desc *outd) in computeRegs() argument 252 hvis = ((mt->HDisplay << 1) + 3) & ~3; in computeRegs() 265 mt->mnp = mnp; in computeRegs() 266 mt->pixclock = g450_mnp2f(minfo, mnp); in computeRegs() 270 pixclock = 1000000000U / mt->pixclock; in computeRegs() 275 do_div(piic, mt->pixclock); in computeRegs() 322 mt->interlaced = 1; in computeRegs() 324 mt->HDisplay = hvis & ~7; in computeRegs() 325 mt->HSyncStart = mt->HDisplay + 8; in computeRegs() 326 mt->HSyncEnd = (hlen & ~7) - 8; in computeRegs() [all …]
|
D | matroxfb_maven.c | 755 struct my_timming* mt, in maven_compute_timming() argument 771 if (maven_find_exact_clocks(mt->HTotal, mt->VTotal, m) == 0) in maven_compute_timming() 774 lmargin = mt->HTotal - mt->HSyncEnd; in maven_compute_timming() 775 slen = mt->HSyncEnd - mt->HSyncStart; in maven_compute_timming() 776 hcrt = mt->HTotal - slen - mt->delay; in maven_compute_timming() 777 umargin = mt->VTotal - mt->VSyncEnd; in maven_compute_timming() 778 vslen = mt->VSyncEnd - mt->VSyncStart; in maven_compute_timming() 780 if (m->hcorr < mt->HTotal) in maven_compute_timming() 782 if (hcrt > mt->HTotal) in maven_compute_timming() 783 hcrt -= mt->HTotal; in maven_compute_timming() [all …]
|
D | matroxfb_crtc2.c | 64 struct my_timming* mt, in matroxfb_dh_restore() argument 104 if (mt->interlaced) { in matroxfb_dh_restore() 106 mt->VDisplay >>= 1; in matroxfb_dh_restore() 107 mt->VSyncStart >>= 1; in matroxfb_dh_restore() 108 mt->VSyncEnd >>= 1; in matroxfb_dh_restore() 109 mt->VTotal >>= 1; in matroxfb_dh_restore() 111 if ((mt->HTotal & 7) == 2) { in matroxfb_dh_restore() 113 mt->HTotal &= ~7; in matroxfb_dh_restore() 116 mga_outl(0x3C14, ((mt->HDisplay - 8) << 16) | (mt->HTotal - 8)); in matroxfb_dh_restore() 117 mga_outl(0x3C18, ((mt->HSyncEnd - 8) << 16) | (mt->HSyncStart - 8)); in matroxfb_dh_restore() [all …]
|
D | matroxfb_misc.c | 106 void matroxfb_var2my(struct fb_var_screeninfo* var, struct my_timming* mt) { in matroxfb_var2my() argument 112 mt->pixclock = 1000000000 / pixclock; in matroxfb_var2my() 113 if (mt->pixclock < 1) mt->pixclock = 1; in matroxfb_var2my() 114 mt->mnp = -1; in matroxfb_var2my() 115 mt->dblscan = var->vmode & FB_VMODE_DOUBLE; in matroxfb_var2my() 116 mt->interlaced = var->vmode & FB_VMODE_INTERLACED; in matroxfb_var2my() 117 mt->HDisplay = var->xres; in matroxfb_var2my() 118 mt->HSyncStart = mt->HDisplay + var->right_margin; in matroxfb_var2my() 119 mt->HSyncEnd = mt->HSyncStart + var->hsync_len; in matroxfb_var2my() 120 mt->HTotal = mt->HSyncEnd + var->left_margin; in matroxfb_var2my() [all …]
|
D | matroxfb_base.c | 782 { struct my_timming mt; in matroxfb_set_par() local 786 matroxfb_var2my(var, &mt); in matroxfb_set_par() 787 mt.crtc = MATROXFB_SRC_CRTC1; in matroxfb_set_par() 790 case 0: mt.delay = 31 + 0; break; in matroxfb_set_par() 791 case 16: mt.delay = 21 + 8; break; in matroxfb_set_par() 792 case 24: mt.delay = 17 + 8; break; in matroxfb_set_par() 793 case 32: mt.delay = 16 + 8; break; in matroxfb_set_par() 794 default: mt.delay = 31 + 8; break; in matroxfb_set_par() 803 minfo->outputs[out].output->compute(minfo->outputs[out].data, &mt); in matroxfb_set_par() 807 minfo->crtc1.pixclock = mt.pixclock; in matroxfb_set_par() [all …]
|
D | matroxfb_base.h | 696 extern void matroxfb_var2my(struct fb_var_screeninfo* fvsi, struct my_timming* mt);
|
/linux-4.4.14/drivers/lightnvm/ |
D | core.c | 91 struct nvmm_type *mt; in nvm_find_mgr_type() local 93 list_for_each_entry(mt, &nvm_mgrs, list) in nvm_find_mgr_type() 94 if (!strcmp(name, mt->name)) in nvm_find_mgr_type() 95 return mt; in nvm_find_mgr_type() 102 struct nvmm_type *mt; in nvm_init_mgr() local 107 list_for_each_entry(mt, &nvm_mgrs, list) { in nvm_init_mgr() 108 ret = mt->register_mgr(dev); in nvm_init_mgr() 114 return mt; in nvm_init_mgr() 120 int nvm_register_mgr(struct nvmm_type *mt) in nvm_register_mgr() argument 126 if (nvm_find_mgr_type(mt->name)) { in nvm_register_mgr() [all …]
|
D | rrpc.c | 1102 struct nvm_lun *lun = dev->mt->get_lun(dev, lun_begin + i); in rrpc_luns_init()
|
/linux-4.4.14/drivers/input/mouse/ |
D | alps.c | 491 fields->mt[0] = fields->st; in alps_process_bitmap() 492 fields->mt[1] = corner[priv->second_touch]; in alps_process_bitmap() 512 input_mt_assign_slots(dev, slot, f->mt, n, 0); in alps_report_mt_data() 514 alps_set_slot(dev, slot[i], f->mt[i].x, f->mt[i].y); in alps_report_mt_data() 527 f->mt[0].x = f->st.x; in alps_report_semi_mt_data() 528 f->mt[0].y = f->st.y; in alps_report_semi_mt_data() 534 alps_set_slot(dev, 0, f->mt[0].x, f->mt[0].y); in alps_report_semi_mt_data() 536 alps_set_slot(dev, 1, f->mt[1].x, f->mt[1].y); in alps_report_semi_mt_data() 970 static void alps_get_finger_coordinate_v7(struct input_mt_pos *mt, in alps_get_finger_coordinate_v7() argument 974 mt[0].x = ((pkt[2] & 0x80) << 4); in alps_get_finger_coordinate_v7() [all …]
|
D | elantech.c | 498 etd->mt[0].x = ((packet[1] & 0x0f) << 8) | packet[2]; in elantech_report_absolute_v3() 503 etd->mt[0].y = etd->y_max - in elantech_report_absolute_v3() 512 x1 = etd->mt[0].x; in elantech_report_absolute_v3() 513 y1 = etd->mt[0].y; in elantech_report_absolute_v3() 595 etd->mt[id].x = ((packet[1] & 0x0f) << 8) | packet[2]; in process_packet_head_v4() 596 etd->mt[id].y = etd->y_max - (((packet[4] & 0x0f) << 8) | packet[5]); in process_packet_head_v4() 603 input_report_abs(dev, ABS_MT_POSITION_X, etd->mt[id].x); in process_packet_head_v4() 604 input_report_abs(dev, ABS_MT_POSITION_Y, etd->mt[id].y); in process_packet_head_v4() 637 etd->mt[id].x += delta_x1 * weight; in process_packet_motion_v4() 638 etd->mt[id].y -= delta_y1 * weight; in process_packet_motion_v4() [all …]
|
D | elantech.h | 143 struct finger_pos mt[ETP_MAX_FINGERS]; member
|
D | alps.h | 204 struct input_mt_pos mt[MAX_TOUCHES]; member
|
/linux-4.4.14/include/linux/input/ |
D | mt.h | 73 static inline bool input_mt_is_used(const struct input_mt *mt, in input_mt_is_used() argument 76 return slot->frame == mt->frame; in input_mt_is_used() 83 static inline int input_mt_new_trkid(struct input_mt *mt) in input_mt_new_trkid() argument 85 return mt->trkid++ & TRKID_MAX; in input_mt_new_trkid()
|
/linux-4.4.14/drivers/isdn/hisax/ |
D | l3_1tr6.c | 31 l3_1TR6_message(struct l3_process *pc, u_char mt, u_char pd) in l3_1TR6_message() argument 39 MsgHead(p, pc->callref, mt, pd); in l3_1TR6_message() 744 int i, mt, cr; in up1tr6() local 784 mt = skb->data[3]; in up1tr6() 789 (pr == (DL_DATA | INDICATION)) ? " " : "(broadcast) ", mt); in up1tr6() 793 if (mt == MT_N1_SETUP) { in up1tr6() 806 } else if ((mt == MT_N1_REL) || (mt == MT_N1_REL_ACK) || in up1tr6() 807 (mt == MT_N1_CANC_ACK) || (mt == MT_N1_CANC_REJ) || in up1tr6() 808 (mt == MT_N1_REG_ACK) || (mt == MT_N1_REG_REJ) || in up1tr6() 809 (mt == MT_N1_SUSP_ACK) || (mt == MT_N1_RES_REJ) || in up1tr6() [all …]
|
D | q931.c | 1192 unsigned char pd, cr_l, cr, mt; in dlogframe() local 1260 mt = *buf++; in dlogframe() 1263 if (mt_n0[i].nr == mt) in dlogframe() 1269 size, mt); in dlogframe() 1276 if (mt_n1[i].nr == mt) in dlogframe() 1282 size, mt); in dlogframe() 1361 mt = *buf++; in dlogframe() 1363 if (mtlist[i].nr == mt) in dlogframe() 1370 size, mt); in dlogframe() 1447 mt = *buf++; in dlogframe() [all …]
|
D | tei.c | 313 int mt; in tei_l1l2() local 343 mt = skb->data[3]; in tei_l1l2() 344 if (mt == ID_ASSIGNED) in tei_l1l2() 346 else if (mt == ID_DENIED) in tei_l1l2() 348 else if (mt == ID_CHK_REQ) in tei_l1l2() 350 else if (mt == ID_REMOVE) in tei_l1l2() 354 "tei handler wrong mt %x\n", mt); in tei_l1l2()
|
D | l3ni1.c | 428 l3ni1_message(struct l3_process *pc, u_char mt) in l3ni1_message() argument 436 MsgHead(p, pc->callref, mt); in l3ni1_message() 441 l3ni1_message_plus_chid(struct l3_process *pc, u_char mt) in l3ni1_message_plus_chid() argument 450 MsgHead(p, pc->callref, mt); in l3ni1_message_plus_chid() 462 l3ni1_message_cause(struct l3_process *pc, u_char mt, u_char cause) in l3ni1_message_cause() argument 469 MsgHead(p, pc->callref, mt); in l3ni1_message_cause() 666 u_char mt; in check_infoelements() local 679 mt = *p++; in check_infoelements() 731 mt, err_compr, err_ureg, err_len, err_seq); in check_infoelements() 746 l3ni1_check_messagetype_validity(struct l3_process *pc, int mt, void *arg) in l3ni1_check_messagetype_validity() argument [all …]
|
D | l3dss1.c | 499 l3dss1_message(struct l3_process *pc, u_char mt) in l3dss1_message() argument 507 MsgHead(p, pc->callref, mt); in l3dss1_message() 512 l3dss1_message_cause(struct l3_process *pc, u_char mt, u_char cause) in l3dss1_message_cause() argument 519 MsgHead(p, pc->callref, mt); in l3dss1_message_cause() 716 u_char mt; in check_infoelements() local 729 mt = *p++; in check_infoelements() 781 mt, err_compr, err_ureg, err_len, err_seq); in check_infoelements() 796 l3dss1_check_messagetype_validity(struct l3_process *pc, int mt, void *arg) in l3dss1_check_messagetype_validity() argument 798 switch (mt) { in l3dss1_check_messagetype_validity() 823 l3_debug(pc->st, "l3dss1_check_messagetype_validity mt(%x) OK", mt); in l3dss1_check_messagetype_validity() [all …]
|
D | hfcscard.c | 101 hfcs_card_msg(struct IsdnCardState *cs, int mt, void *arg) in hfcs_card_msg() argument 107 debugl1(cs, "HFCS: card_msg %x", mt); in hfcs_card_msg() 108 switch (mt) { in hfcs_card_msg()
|
D | enternow_pci.c | 173 enpci_card_msg(struct IsdnCardState *cs, int mt, void *arg) in enpci_card_msg() argument 179 debugl1(cs, "enter:now PCI: card_msg: 0x%04X", mt); in enpci_card_msg() 181 switch (mt) { in enpci_card_msg()
|
D | nj_u.c | 102 NETjet_U_card_msg(struct IsdnCardState *cs, int mt, void *arg) in NETjet_U_card_msg() argument 106 switch (mt) { in NETjet_U_card_msg()
|
D | sportster.c | 158 Sportster_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Sportster_card_msg() argument 162 switch (mt) { in Sportster_card_msg()
|
D | nj_s.c | 122 NETjet_S_card_msg(struct IsdnCardState *cs, int mt, void *arg) in NETjet_S_card_msg() argument 126 switch (mt) { in NETjet_S_card_msg()
|
D | mic.c | 168 mic_card_msg(struct IsdnCardState *cs, int mt, void *arg) in mic_card_msg() argument 172 switch (mt) { in mic_card_msg()
|
D | avm_a1p.c | 175 AVM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in AVM_card_msg() argument 179 switch (mt) { in AVM_card_msg()
|
D | s0box.c | 192 S0Box_card_msg(struct IsdnCardState *cs, int mt, void *arg) in S0Box_card_msg() argument 196 switch (mt) { in S0Box_card_msg()
|
D | telespci.c | 265 TelesPCI_card_msg(struct IsdnCardState *cs, int mt, void *arg) in TelesPCI_card_msg() argument 269 switch (mt) { in TelesPCI_card_msg()
|
D | isurf.c | 143 ISurf_card_msg(struct IsdnCardState *cs, int mt, void *arg) in ISurf_card_msg() argument 147 switch (mt) { in ISurf_card_msg()
|
D | ix1_micro.c | 186 ix1_card_msg(struct IsdnCardState *cs, int mt, void *arg) in ix1_card_msg() argument 190 switch (mt) { in ix1_card_msg()
|
D | saphir.c | 218 saphir_card_msg(struct IsdnCardState *cs, int mt, void *arg) in saphir_card_msg() argument 222 switch (mt) { in saphir_card_msg()
|
D | avm_a1.c | 156 AVM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in AVM_card_msg() argument 160 switch (mt) { in AVM_card_msg()
|
D | bkm_a4t.c | 220 BKM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in BKM_card_msg() argument 224 switch (mt) { in BKM_card_msg()
|
D | teles0.c | 242 Teles_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Teles_card_msg() argument 246 switch (mt) { in Teles_card_msg()
|
D | teleint.c | 226 TeleInt_card_msg(struct IsdnCardState *cs, int mt, void *arg) in TeleInt_card_msg() argument 231 switch (mt) { in TeleInt_card_msg()
|
D | niccy.c | 201 static int niccy_card_msg(struct IsdnCardState *cs, int mt, void *arg) in niccy_card_msg() argument 205 switch (mt) { in niccy_card_msg()
|
D | bkm_a8.c | 222 BKM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in BKM_card_msg() argument 226 switch (mt) { in BKM_card_msg()
|
D | teles3.c | 230 Teles_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Teles_card_msg() argument 234 switch (mt) { in Teles_card_msg()
|
D | asuscom.c | 272 Asus_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Asus_card_msg() argument 276 switch (mt) { in Asus_card_msg()
|
D | gazel.c | 401 Gazel_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Gazel_card_msg() argument 405 switch (mt) { in Gazel_card_msg()
|
D | sedlbauer.c | 441 Sedl_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Sedl_card_msg() argument 445 switch (mt) { in Sedl_card_msg()
|
D | avm_pci.c | 686 AVM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in AVM_card_msg() argument 690 switch (mt) { in AVM_card_msg()
|
D | hfc_sx.c | 1350 hfcsx_card_msg(struct IsdnCardState *cs, int mt, void *arg) in hfcsx_card_msg() argument 1355 debugl1(cs, "HFCSX: card_msg %x", mt); in hfcsx_card_msg() 1356 switch (mt) { in hfcsx_card_msg()
|
D | w6692.c | 970 w6692_card_msg(struct IsdnCardState *cs, int mt, void *arg) in w6692_card_msg() argument 972 switch (mt) { in w6692_card_msg()
|
D | hfc_pci.c | 1598 hfcpci_card_msg(struct IsdnCardState *cs, int mt, void *arg) in hfcpci_card_msg() argument 1603 debugl1(cs, "HFCPCI: card_msg %x", mt); in hfcpci_card_msg() 1604 switch (mt) { in hfcpci_card_msg()
|
D | elsa.c | 650 Elsa_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Elsa_card_msg() argument 655 switch (mt) { in Elsa_card_msg()
|
D | diva.c | 836 Diva_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Diva_card_msg() argument 841 switch (mt) { in Diva_card_msg()
|
D | config.c | 1578 static int hisax_cardmsg(struct IsdnCardState *cs, int mt, void *arg); 1814 static int hisax_cardmsg(struct IsdnCardState *cs, int mt, void *arg) in hisax_cardmsg() argument
|
/linux-4.4.14/arch/mips/kernel/ |
D | Makefile | 49 obj-$(CONFIG_MIPS_MT) += mips-mt.o 50 obj-$(CONFIG_MIPS_MT_FPAFF) += mips-mt-fpaff.o 51 obj-$(CONFIG_MIPS_MT_SMP) += smp-mt.o 60 obj-$(CONFIG_MIPS_VPE_LOADER_MT) += vpe-mt.o 63 obj-$(CONFIG_MIPS_VPE_APSP_API_MT) += rtlx-mt.o
|
D | cps-vec.S | 260 .set mt define 378 .set mt define
|
D | genex.S | 447 BUILD_HANDLER mt mt sti silent /* #25 */
|
D | cpu-probe.c | 413 int isa, mt; in decode_config0() local 420 mt = config0 & MIPS_CONF_MT; in decode_config0() 421 if (mt == MIPS_CONF_MT_TLB) in decode_config0() 423 else if (mt == MIPS_CONF_MT_FTLB) in decode_config0()
|
/linux-4.4.14/arch/arm/mm/ |
D | mm.h | 67 #define VM_ARM_MTYPE(mt) ((mt) << 20) argument
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlxsw/ |
D | spectrum_switchdev.c | 311 enum mlxsw_reg_svfa_mt mt; in mlxsw_sp_port_fid_map() local 314 mt = MLXSW_REG_SVFA_MT_PORT_VID_TO_FID; in mlxsw_sp_port_fid_map() 316 mt = MLXSW_REG_SVFA_MT_VID_TO_FID; in mlxsw_sp_port_fid_map() 318 return mlxsw_sp_port_vid_to_fid_set(mlxsw_sp_port, mt, true, fid, fid); in mlxsw_sp_port_fid_map() 323 enum mlxsw_reg_svfa_mt mt; in mlxsw_sp_port_fid_unmap() local 328 mt = MLXSW_REG_SVFA_MT_PORT_VID_TO_FID; in mlxsw_sp_port_fid_unmap() 329 return mlxsw_sp_port_vid_to_fid_set(mlxsw_sp_port, mt, false, fid, fid); in mlxsw_sp_port_fid_unmap() 357 enum mlxsw_reg_svfa_mt mt; in __mlxsw_sp_port_vlans_add() local 380 mt = MLXSW_REG_SVFA_MT_VID_TO_FID; in __mlxsw_sp_port_vlans_add() 381 err = mlxsw_sp_port_vid_to_fid_set(mlxsw_sp_port, mt, in __mlxsw_sp_port_vlans_add()
|
D | spectrum.h | 115 enum mlxsw_reg_svfa_mt mt, bool valid, u16 fid,
|
D | spectrum.c | 295 enum mlxsw_reg_svfa_mt mt, bool valid, u16 fid, in mlxsw_sp_port_vid_to_fid_set() argument 301 mlxsw_reg_svfa_pack(svfa_pl, mlxsw_sp_port->local_port, mt, valid, in mlxsw_sp_port_vid_to_fid_set() 500 enum mlxsw_reg_svfa_mt mt = MLXSW_REG_SVFA_MT_PORT_VID_TO_FID; in mlxsw_sp_port_vp_mode_trans() local 505 err = mlxsw_sp_port_vid_to_fid_set(mlxsw_sp_port, mt, true, vid, in mlxsw_sp_port_vp_mode_trans() 523 mlxsw_sp_port_vid_to_fid_set(mlxsw_sp_port, mt, false, vid, in mlxsw_sp_port_vp_mode_trans() 530 enum mlxsw_reg_svfa_mt mt = MLXSW_REG_SVFA_MT_PORT_VID_TO_FID; in mlxsw_sp_port_vlan_mode_trans() local 539 err = mlxsw_sp_port_vid_to_fid_set(mlxsw_sp_port, mt, false, in mlxsw_sp_port_vlan_mode_trans()
|
D | reg.h | 1001 enum mlxsw_reg_svfa_mt mt, bool valid, in mlxsw_reg_svfa_pack() argument 1005 local_port = mt == MLXSW_REG_SVFA_MT_VID_TO_FID ? 0 : local_port; in mlxsw_reg_svfa_pack() 1008 mlxsw_reg_svfa_mapping_table_set(payload, mt); in mlxsw_reg_svfa_pack()
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/mediatek/ |
D | mediatek,pericfg.txt | 17 The available clocks are defined in dt-bindings/clock/mt*-clk.h. 21 dt-bindings/reset-controller/mt*-resets.h
|
D | mediatek,infracfg.txt | 17 The available clocks are defined in dt-bindings/clock/mt*-clk.h. 21 dt-bindings/reset-controller/mt*-resets.h
|
D | mediatek,vencltsys.txt | 14 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
|
D | mediatek,apmixedsys.txt | 15 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
|
D | mediatek,topckgen.txt | 15 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
|
D | mediatek,imgsys.txt | 14 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
|
D | mediatek,vdecsys.txt | 14 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
|
D | mediatek,vencsys.txt | 14 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
|
D | mediatek,mmsys.txt | 14 The available clocks are defined in dt-bindings/clock/mt*-clk.h.
|
/linux-4.4.14/drivers/edac/ |
D | synopsys_edac.c | 338 enum mem_type mt; in synps_edac_get_mtype() local 344 mt = MEM_DDR3; in synps_edac_get_mtype() 346 mt = MEM_DDR2; in synps_edac_get_mtype() 348 return mt; in synps_edac_get_mtype()
|
/linux-4.4.14/drivers/video/fbdev/aty/ |
D | radeon_monitor.c | 73 int i, mt = MT_NONE; in radeon_parse_montype_prop() local 84 mt = MT_DFP; in radeon_parse_montype_prop() 86 mt = MT_CRT; in radeon_parse_montype_prop() 109 return mt; in radeon_parse_montype_prop() 113 return mt; in radeon_parse_montype_prop() 115 return mt; in radeon_parse_montype_prop() 144 int mt = radeon_parse_montype_prop(dp, out_EDID, 0); in radeon_probe_OF_head() local 148 if (mt == MT_DFP && rinfo->is_mobility) in radeon_probe_OF_head() 149 mt = MT_LCD; in radeon_probe_OF_head() 150 return mt; in radeon_probe_OF_head()
|
/linux-4.4.14/drivers/net/ethernet/smsc/ |
D | smc91x.h | 1021 const unsigned char *mt = (x); \ 1022 SMC_outw(mt[0] | (mt[1] << 8), ioaddr, MCAST_REG1(lp)); \ 1023 SMC_outw(mt[2] | (mt[3] << 8), ioaddr, MCAST_REG2(lp)); \ 1024 SMC_outw(mt[4] | (mt[5] << 8), ioaddr, MCAST_REG3(lp)); \ 1025 SMC_outw(mt[6] | (mt[7] << 8), ioaddr, MCAST_REG4(lp)); \
|
/linux-4.4.14/drivers/isdn/mISDN/ |
D | tei.c | 770 tei_ph_data_ind(struct teimgr *tm, u_int mt, u_char *dp, int len) in tei_ph_data_ind() argument 775 tm->tei_m.printdebug(&tm->tei_m, "tei handler mt %x", mt); in tei_ph_data_ind() 776 if (mt == ID_ASSIGNED) in tei_ph_data_ind() 778 else if (mt == ID_DENIED) in tei_ph_data_ind() 780 else if (mt == ID_CHK_REQ) in tei_ph_data_ind() 782 else if (mt == ID_REMOVE) in tei_ph_data_ind() 784 else if (mt == ID_VERIFY) in tei_ph_data_ind() 786 else if (mt == ID_CHK_RES) in tei_ph_data_ind() 891 u_char mt; in ph_data_ind() local 912 mt = skb->data[6]; in ph_data_ind() [all …]
|
/linux-4.4.14/net/ipv4/ |
D | ipconfig.c | 673 u8 mt = ((ic_servaddr == NONE) in ic_dhcp_init_options() local 679 printk("DHCP: Sending message type %d\n", mt); in ic_dhcp_init_options() 687 *e++ = mt; in ic_dhcp_init_options() 689 if (mt == DHCPREQUEST) { in ic_dhcp_init_options() 1061 int mt = 0; in ic_bootp_recv() local 1074 mt = opt[2]; in ic_bootp_recv() 1084 printk("DHCP: Got message type %d\n", mt); in ic_bootp_recv() 1087 switch (mt) { in ic_bootp_recv() 1125 ic_dhcp_msgtype = mt; in ic_bootp_recv()
|
/linux-4.4.14/arch/arm64/mm/ |
D | proc.S | 44 #define MAIR(attr, mt) ((attr) << ((mt) * 8)) argument
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-cfq-target-latency | 3 contact: Tao Ma <boyu.mt@taobao.com>
|
/linux-4.4.14/mm/ |
D | page_alloc.c | 833 int mt; /* migratetype of the to-be-freed page */ in free_pcppages_bulk() local 839 mt = get_pcppage_migratetype(page); in free_pcppages_bulk() 841 VM_BUG_ON_PAGE(is_migrate_isolate(mt), page); in free_pcppages_bulk() 844 mt = get_pageblock_migratetype(page); in free_pcppages_bulk() 846 __free_one_page(page, page_to_pfn(page), zone, 0, mt); in free_pcppages_bulk() 847 trace_mm_page_pcpu_drain(page, 0, mt); in free_pcppages_bulk() 1668 int mt; in reserve_highatomic_pageblock() local 1686 mt = get_pageblock_migratetype(page); in reserve_highatomic_pageblock() 1687 if (mt != MIGRATE_HIGHATOMIC && in reserve_highatomic_pageblock() 1688 !is_migrate_isolate(mt) && !is_migrate_cma(mt)) { in reserve_highatomic_pageblock() [all …]
|
/linux-4.4.14/include/net/nfc/ |
D | nci.h | 178 #define nci_mt_set(hdr, mt) ((hdr)[0] |= (__u8)(((mt)&0x07)<<5)) argument
|
/linux-4.4.14/Documentation/DocBook/ |
D | device-drivers.xml.db | 1016 API-struct-input-mt-slot 1017 API-struct-input-mt 1018 API-struct-input-mt-pos 1019 API-input-mt-init-slots 1020 API-input-mt-destroy-slots 1021 API-input-mt-report-slot-state 1022 API-input-mt-report-finger-count 1023 API-input-mt-report-pointer-emulation 1024 API-input-mt-drop-unused 1025 API-input-mt-sync-frame [all …]
|
D | .device-drivers.xml.cmd | 2 …input/ff-core.c drivers/input/ff-memless.c include/linux/input/mt.h drivers/input/input-mt.c inclu…
|
/linux-4.4.14/drivers/hid/ |
D | hid-multitouch.c | 619 struct input_mt *mt = input->mt; in mt_complete_slot() local 624 if ((td->mtclass.quirks & MT_QUIRK_IGNORE_DUPLICATES) && mt) { in mt_complete_slot() 625 struct input_mt_slot *slot = &mt->slots[slotnum]; in mt_complete_slot() 627 input_mt_is_used(mt, slot)) in mt_complete_slot()
|
D | wacom_wac.c | 1216 for (i = 0; i < input->mt->num_slots; i++) { in wacom_wac_finger_count_touches() 1217 struct input_mt_slot *ps = &input->mt->slots[i]; in wacom_wac_finger_count_touches() 1666 bool mt = wacom_wac->features.touch_max > 1; in wacom_wac_finger_slot() local 1674 if (mt) { in wacom_wac_finger_slot() 1686 input_report_abs(input, mt ? ABS_MT_POSITION_X : ABS_X, in wacom_wac_finger_slot() 1688 input_report_abs(input, mt ? ABS_MT_POSITION_Y : ABS_Y, in wacom_wac_finger_slot()
|
/linux-4.4.14/drivers/media/usb/go7007/ |
D | go7007-v4l2.c | 812 u8 *mt; in go7007_s_ctrl() local 852 mt = go->modet_map; in go7007_s_ctrl() 853 for (y = 0; y < go->height / 16; y++, mt += go->width / 16) in go7007_s_ctrl() 854 memcpy(mt, ctrl->p_new.p_u8 + y * (720 / 16), go->width / 16); in go7007_s_ctrl()
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | swsusp_asm64.S | 67 mt##special r0
|
/linux-4.4.14/drivers/iommu/ |
D | msm_iommu.c | 687 static int __init get_tex_class(int icp, int ocp, int mt, int nos) in get_tex_class() argument 703 if (icp == c_icp && ocp == c_ocp && c_mt == mt && c_nos == nos) in get_tex_class()
|
/linux-4.4.14/drivers/nvme/host/ |
D | lightnvm.c | 458 if (dev->mt && dev->mt->end_io(rqd, error)) in nvme_nvm_end_io()
|
/linux-4.4.14/Documentation/input/ |
D | alps.txt | 158 byte 4: 0 mt x3 x2 y3 y2 y1 y0 177 This packet only appears after a position packet with the mt bit set, and 250 For mt, the format is:
|
D | event-codes.txt | 274 touchpads, the semi-mt property should be set.
|
/linux-4.4.14/include/linux/ |
D | input.h | 158 struct input_mt *mt; member
|
D | lightnvm.h | 247 struct nvmm_type *mt; member
|
/linux-4.4.14/Documentation/scsi/ |
D | st.txt | 61 alternative is to make a small script that uses mt to set the defaults 352 defined in mtio.h The tape control program 'mt' uses these ioctls. Try 353 to find an mt that supports all of the Linux SCSI tape ioctls and 355 (look for a package mt-st* from the Linux ftp sites; the GNU mt does
|
D | osst.txt | 86 supported and you may try the mt (or mt_st) program to jump between
|
/linux-4.4.14/Documentation/blockdev/ |
D | cciss.txt | 177 must rewind the tape (by issuing "mt -f /dev/st0 rewind" for example)
|
/linux-4.4.14/drivers/block/ |
D | null_blk.c | 441 dev->mt->end_io(rqd, error); in null_lnvm_end_io()
|
/linux-4.4.14/Documentation/ide/ |
D | ChangeLog.ide-cd.1994-2004 | 263 * 4.60 Dec 17, 2003 - Add mt rainier support
|
D | ChangeLog.ide-tape.1995-2002 | 199 * 3) Either solve or document the fact that `mt rewind' is
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb3/ |
D | t3_hw.c | 587 VPD_ENTRY(mt, 2); /* mem timing */
|
/linux-4.4.14/ |
D | MAINTAINERS | 5485 F: drivers/input/input-mt.c
|