Home
last modified time | relevance | path

Searched refs:mt (Results 1 – 81 of 81) sorted by relevance

/linux-4.1.27/drivers/input/
Dinput-mt.c44 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 …]
Dinput.c218 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()
DMakefile8 input-core-y := input.o input-compat.o input-mt.o ff-core.o
Devdev.c824 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/
Dmatroxfb_g450.c237 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 …]
Dmatroxfb_maven.c755 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 …]
Dmatroxfb_crtc2.c64 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 …]
Dmatroxfb_misc.c106 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 …]
Dmatroxfb_base.c789 { 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 …]
Dmatroxfb_base.h721 extern void matroxfb_var2my(struct fb_var_screeninfo* fvsi, struct my_timming* mt);
/linux-4.1.27/drivers/input/mouse/
Dalps.c392 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 …]
Delantech.c498 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 …]
Delantech.h142 struct finger_pos mt[ETP_MAX_FINGERS]; member
Dalps.h204 struct input_mt_pos mt[MAX_TOUCHES]; member
/linux-4.1.27/include/linux/input/
Dmt.h73 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/
Dl3_1tr6.c31 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 …]
Dq931.c1192 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 …]
Dtei.c313 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()
Dl3ni1.c428 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 …]
Dl3dss1.c499 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 …]
Dhfcscard.c101 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()
Denternow_pci.c173 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()
Dnj_u.c102 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()
Dsportster.c158 Sportster_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Sportster_card_msg() argument
162 switch (mt) { in Sportster_card_msg()
Dmic.c168 mic_card_msg(struct IsdnCardState *cs, int mt, void *arg) in mic_card_msg() argument
172 switch (mt) { in mic_card_msg()
Davm_a1p.c175 AVM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in AVM_card_msg() argument
179 switch (mt) { in AVM_card_msg()
Dnj_s.c122 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()
Ds0box.c192 S0Box_card_msg(struct IsdnCardState *cs, int mt, void *arg) in S0Box_card_msg() argument
196 switch (mt) { in S0Box_card_msg()
Disurf.c143 ISurf_card_msg(struct IsdnCardState *cs, int mt, void *arg) in ISurf_card_msg() argument
147 switch (mt) { in ISurf_card_msg()
Dtelespci.c265 TelesPCI_card_msg(struct IsdnCardState *cs, int mt, void *arg) in TelesPCI_card_msg() argument
269 switch (mt) { in TelesPCI_card_msg()
Dsaphir.c218 saphir_card_msg(struct IsdnCardState *cs, int mt, void *arg) in saphir_card_msg() argument
222 switch (mt) { in saphir_card_msg()
Dbkm_a4t.c220 BKM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in BKM_card_msg() argument
224 switch (mt) { in BKM_card_msg()
Dix1_micro.c186 ix1_card_msg(struct IsdnCardState *cs, int mt, void *arg) in ix1_card_msg() argument
190 switch (mt) { in ix1_card_msg()
Davm_a1.c156 AVM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in AVM_card_msg() argument
160 switch (mt) { in AVM_card_msg()
Dteleint.c226 TeleInt_card_msg(struct IsdnCardState *cs, int mt, void *arg) in TeleInt_card_msg() argument
231 switch (mt) { in TeleInt_card_msg()
Dteles0.c242 Teles_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Teles_card_msg() argument
246 switch (mt) { in Teles_card_msg()
Dniccy.c201 static int niccy_card_msg(struct IsdnCardState *cs, int mt, void *arg) in niccy_card_msg() argument
205 switch (mt) { in niccy_card_msg()
Dbkm_a8.c222 BKM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in BKM_card_msg() argument
226 switch (mt) { in BKM_card_msg()
Dasuscom.c272 Asus_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Asus_card_msg() argument
276 switch (mt) { in Asus_card_msg()
Dteles3.c230 Teles_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Teles_card_msg() argument
234 switch (mt) { in Teles_card_msg()
Dgazel.c401 Gazel_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Gazel_card_msg() argument
405 switch (mt) { in Gazel_card_msg()
Dsedlbauer.c441 Sedl_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Sedl_card_msg() argument
445 switch (mt) { in Sedl_card_msg()
Davm_pci.c686 AVM_card_msg(struct IsdnCardState *cs, int mt, void *arg) in AVM_card_msg() argument
690 switch (mt) { in AVM_card_msg()
Dhfc_sx.c1350 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()
Dw6692.c970 w6692_card_msg(struct IsdnCardState *cs, int mt, void *arg) in w6692_card_msg() argument
972 switch (mt) { in w6692_card_msg()
Dhfc_pci.c1598 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()
Delsa.c650 Elsa_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Elsa_card_msg() argument
655 switch (mt) { in Elsa_card_msg()
Ddiva.c836 Diva_card_msg(struct IsdnCardState *cs, int mt, void *arg) in Diva_card_msg() argument
841 switch (mt) { in Diva_card_msg()
Dconfig.c1578 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/
DMakefile49 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
Dcps-vec.S233 .set mt define
350 .set mt define
Dgenex.S447 BUILD_HANDLER mt mt sti silent /* #25 */
/linux-4.1.27/arch/arm/mm/
Dmm.h67 #define VM_ARM_MTYPE(mt) ((mt) << 20) argument
/linux-4.1.27/drivers/edac/
Dsynopsys_edac.c338 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/
Dradeon_monitor.c73 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/
Dsmc91x.h990 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/
DMakefile226 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/
Dtei.c770 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/
Dipconfig.c669 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/
Dlustre_disk.h125 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/
Dsysfs-cfq-target-latency3 contact: Tao Ma <boyu.mt@taobao.com>
/linux-4.1.27/arch/arm64/mm/
Dproc.S46 #define MAIR(attr, mt) ((attr) << ((mt) * 8)) argument
/linux-4.1.27/Documentation/DocBook/
D.device-drivers.xml.cmd2 …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/
Dnci.h176 #define nci_mt_set(hdr, mt) ((hdr)[0] |= (__u8)(((mt)&0x07)<<5)) argument
/linux-4.1.27/drivers/hid/
Dhid-multitouch.c576 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()
Dwacom_wac.c1083 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/
Dpage_alloc.c750 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/
Dgo7007-v4l2.c808 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/
Dswsusp_asm64.S67 mt##special r0
/linux-4.1.27/drivers/iommu/
Dmsm_iommu.c687 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/
Dalps.txt158 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:
Devent-codes.txt274 touchpads, the semi-mt property should be set.
/linux-4.1.27/include/linux/
Dinput.h158 struct input_mt *mt; member
/linux-4.1.27/Documentation/scsi/
Dst.txt61 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
Dosst.txt86 supported and you may try the mt (or mt_st) program to jump between
/linux-4.1.27/Documentation/blockdev/
Dcciss.txt177 must rewind the tape (by issuing "mt -f /dev/st0 rewind" for example)
/linux-4.1.27/Documentation/ide/
DChangeLog.ide-cd.1994-2004263 * 4.60 Dec 17, 2003 - Add mt rainier support
DChangeLog.ide-tape.1995-2002199 * 3) Either solve or document the fact that `mt rewind' is
/linux-4.1.27/arch/x86/kvm/
Dmmu.c3686 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/
Dt3_hw.c587 VPD_ENTRY(mt, 2); /* mem timing */
/linux-4.1.27/
DMAINTAINERS5097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
5100 F: drivers/input/input-mt.c