Home
last modified time | relevance | path

Searched refs:ntouch (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/dev/usb/input/
H A Dwsp.c967 int ntouch = 0; /* the finger number in touch */ in wsp_intr_callback() local
1009 ntouch = sc->tp_data[params->tp->button - 1]; in wsp_intr_callback()
1011 ntouch = (len - params->tp->offset) / params->tp->fsize; in wsp_intr_callback()
1014 if (ntouch < 0) in wsp_intr_callback()
1015 ntouch = 0; in wsp_intr_callback()
1016 else if (ntouch > MAX_FINGERS) in wsp_intr_callback()
1017 ntouch = MAX_FINGERS; in wsp_intr_callback()
1019 for (i = 0; i != ntouch; i++) { in wsp_intr_callback()
1040 i, ibt, ntouch, f->origin, f->abs_x, f->abs_y, in wsp_intr_callback()
1076 if (ntouch == 2) { in wsp_intr_callback()
[all …]
/freebsd/sys/dev/hid/
H A Dbcm5974.c819 int ntouch; /* the finger number in touch */ in bcm5974_intr()
837 ntouch = (len - params->tp->offset) / fsize; in bcm5974_intr()
839 for (i = 0, slot = 0; i != ntouch; i++) { in bcm5974_intr()
850 i, ibt, ntouch, coords << 19 >> 19, in bcm5974_intr()
875 i, ibt, ntouch, BCM5974_LE2H(f->origin), in bcm5974_intr()
817 int ntouch; /* the finger number in touch */ bcm5974_intr() local