/linux-4.1.27/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 | 824 const struct input_mt *mt = dev->mt; in evdev_handle_mt_request() local 831 if (!mt || !input_is_mt_value(code)) in evdev_handle_mt_request() 835 for (i = 0; i < mt->num_slots && i < max_slots; i++) { in evdev_handle_mt_request() 836 int value = input_mt_get_value(&mt->slots[i], code); in evdev_handle_mt_request()
|
/linux-4.1.27/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 | 789 { struct my_timming mt; in matroxfb_set_par() local 793 matroxfb_var2my(var, &mt); in matroxfb_set_par() 794 mt.crtc = MATROXFB_SRC_CRTC1; in matroxfb_set_par() 797 case 0: mt.delay = 31 + 0; break; in matroxfb_set_par() 798 case 16: mt.delay = 21 + 8; break; in matroxfb_set_par() 799 case 24: mt.delay = 17 + 8; break; in matroxfb_set_par() 800 case 32: mt.delay = 16 + 8; break; in matroxfb_set_par() 801 default: mt.delay = 31 + 8; break; in matroxfb_set_par() 810 minfo->outputs[out].output->compute(minfo->outputs[out].data, &mt); in matroxfb_set_par() 814 minfo->crtc1.pixclock = mt.pixclock; in matroxfb_set_par() [all …]
|
D | matroxfb_base.h | 721 extern void matroxfb_var2my(struct fb_var_screeninfo* fvsi, struct my_timming* mt);
|
/linux-4.1.27/drivers/input/mouse/ |
D | alps.c | 392 fields->mt[0] = fields->st; in alps_process_bitmap_dolphin() 393 fields->mt[1].x = 2 * box_middle_x - fields->mt[0].x; in alps_process_bitmap_dolphin() 394 fields->mt[1].y = 2 * box_middle_y - fields->mt[0].y; in alps_process_bitmap_dolphin() 470 fields->mt[0].x = in alps_process_bitmap() 473 fields->mt[0].y = in alps_process_bitmap() 477 fields->mt[1].x = in alps_process_bitmap() 480 fields->mt[1].y = in alps_process_bitmap() 486 fields->mt[0].y = priv->y_max - fields->mt[0].y; in alps_process_bitmap() 487 fields->mt[1].y = priv->y_max - fields->mt[1].y; in alps_process_bitmap() 508 input_mt_assign_slots(dev, slot, f->mt, n, 0); in alps_report_mt_data() [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 | 142 struct finger_pos mt[ETP_MAX_FINGERS]; member
|
D | alps.h | 204 struct input_mt_pos mt[MAX_TOUCHES]; member
|
/linux-4.1.27/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.1.27/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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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.1.27/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 59 obj-$(CONFIG_MIPS_VPE_LOADER_MT) += vpe-mt.o 62 obj-$(CONFIG_MIPS_VPE_APSP_API_MT) += rtlx-mt.o
|
D | cps-vec.S | 233 .set mt define 350 .set mt define
|
D | genex.S | 447 BUILD_HANDLER mt mt sti silent /* #25 */
|
/linux-4.1.27/arch/arm/mm/ |
D | mm.h | 67 #define VM_ARM_MTYPE(mt) ((mt) << 20) argument
|
/linux-4.1.27/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.1.27/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.1.27/drivers/net/ethernet/smsc/ |
D | smc91x.h | 990 const unsigned char *mt = (x); \ 991 SMC_outw(mt[0] | (mt[1] << 8), ioaddr, MCAST_REG1(lp)); \ 992 SMC_outw(mt[2] | (mt[3] << 8), ioaddr, MCAST_REG2(lp)); \ 993 SMC_outw(mt[4] | (mt[5] << 8), ioaddr, MCAST_REG3(lp)); \ 994 SMC_outw(mt[6] | (mt[7] << 8), ioaddr, MCAST_REG4(lp)); \
|
/linux-4.1.27/scripts/kconfig/ |
D | Makefile | 226 pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \ 249 test -f $$libpath/libqt-mt.so && lib=qt-mt; \
|
/linux-4.1.27/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.1.27/net/ipv4/ |
D | ipconfig.c | 669 u8 mt = ((ic_servaddr == NONE) in ic_dhcp_init_options() local 675 printk("DHCP: Sending message type %d\n", mt); in ic_dhcp_init_options() 683 *e++ = mt; in ic_dhcp_init_options() 685 if (mt == DHCPREQUEST) { in ic_dhcp_init_options() 1047 int mt = 0; in ic_bootp_recv() local 1060 mt = opt[2]; in ic_bootp_recv() 1070 printk("DHCP: Got message type %d\n", mt); in ic_bootp_recv() 1073 switch (mt) { in ic_bootp_recv() 1111 ic_dhcp_msgtype = mt; in ic_bootp_recv()
|
/linux-4.1.27/drivers/staging/lustre/lustre/include/ |
D | lustre_disk.h | 125 static inline char *mt_str(enum ldd_mount_type mt) in mt_str() argument 135 return mount_type_string[mt]; in mt_str() 138 static inline char *mt_type(enum ldd_mount_type mt) in mt_type() argument 148 return mount_type_string[mt]; in mt_type()
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-cfq-target-latency | 3 contact: Tao Ma <boyu.mt@taobao.com>
|
/linux-4.1.27/arch/arm64/mm/ |
D | proc.S | 46 #define MAIR(attr, mt) ((attr) << ((mt) * 8)) argument
|
/linux-4.1.27/Documentation/DocBook/ |
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.1.27/include/net/nfc/ |
D | nci.h | 176 #define nci_mt_set(hdr, mt) ((hdr)[0] |= (__u8)(((mt)&0x07)<<5)) argument
|
/linux-4.1.27/drivers/hid/ |
D | hid-multitouch.c | 576 struct input_mt *mt = input->mt; in mt_complete_slot() local 581 if ((td->mtclass.quirks & MT_QUIRK_IGNORE_DUPLICATES) && mt) { in mt_complete_slot() 582 struct input_mt_slot *slot = &mt->slots[slotnum]; in mt_complete_slot() 584 input_mt_is_used(mt, slot)) in mt_complete_slot()
|
D | wacom_wac.c | 1083 for (i = 0; i < input->mt->num_slots; i++) { in wacom_wac_finger_count_touches() 1084 struct input_mt_slot *ps = &input->mt->slots[i]; in wacom_wac_finger_count_touches() 1510 bool mt = wacom_wac->features.touch_max > 1; in wacom_wac_finger_slot() local 1514 if (mt) { in wacom_wac_finger_slot() 1526 input_report_abs(input, mt ? ABS_MT_POSITION_X : ABS_X, in wacom_wac_finger_slot() 1528 input_report_abs(input, mt ? ABS_MT_POSITION_Y : ABS_Y, in wacom_wac_finger_slot()
|
/linux-4.1.27/mm/ |
D | page_alloc.c | 750 int mt; /* migratetype of the to-be-freed page */ in free_pcppages_bulk() local 755 mt = get_freepage_migratetype(page); in free_pcppages_bulk() 757 mt = get_pageblock_migratetype(page); in free_pcppages_bulk() 760 __free_one_page(page, page_to_pfn(page), zone, 0, mt); in free_pcppages_bulk() 761 trace_mm_page_pcpu_drain(page, 0, mt); in free_pcppages_bulk() 1659 int mt; in __isolate_free_page() local 1664 mt = get_pageblock_migratetype(page); in __isolate_free_page() 1666 if (!is_migrate_isolate(mt)) { in __isolate_free_page() 1672 __mod_zone_freepage_state(zone, -(1UL << order), mt); in __isolate_free_page() 1684 int mt = get_pageblock_migratetype(page); in __isolate_free_page() local [all …]
|
/linux-4.1.27/drivers/media/usb/go7007/ |
D | go7007-v4l2.c | 808 u8 *mt; in go7007_s_ctrl() local 848 mt = go->modet_map; in go7007_s_ctrl() 849 for (y = 0; y < go->height / 16; y++, mt += go->width / 16) in go7007_s_ctrl() 850 memcpy(mt, ctrl->p_new.p_u8 + y * (720 / 16), go->width / 16); in go7007_s_ctrl()
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | swsusp_asm64.S | 67 mt##special r0
|
/linux-4.1.27/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.1.27/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.1.27/include/linux/ |
D | input.h | 158 struct input_mt *mt; member
|
/linux-4.1.27/Documentation/scsi/ |
D | st.txt | 61 alternative is to make a small script that uses mt to set the defaults 293 defined in mtio.h The tape control program 'mt' uses these ioctls. Try 294 to find an mt that supports all of the Linux SCSI tape ioctls and 296 (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.1.27/Documentation/blockdev/ |
D | cciss.txt | 177 must rewind the tape (by issuing "mt -f /dev/st0 rewind" for example)
|
/linux-4.1.27/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.1.27/arch/x86/kvm/ |
D | mmu.c | 3686 int mt = pte >> 3; in reset_rsvds_bits_mask_ept() local 3687 if (mt == 0x2 || mt == 0x3 || mt == 0x7 || in reset_rsvds_bits_mask_ept()
|
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb3/ |
D | t3_hw.c | 587 VPD_ENTRY(mt, 2); /* mem timing */
|
/linux-4.1.27/ |
D | MAINTAINERS | 5097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git 5100 F: drivers/input/input-mt.c
|