Home
last modified time | relevance | path

Searched full:touches (Results 1 – 25 of 120) sorted by relevance

12345

/linux-6.12.1/drivers/hid/
Dhid-magicmouse.c118 * @ntouches: Number of touches in most recent touch report.
121 * @touches: Most recent data for a touch, indexed by tracking ID.
122 * @tracking_ids: Mapping of current touch input data to @touches.
145 } touches[16]; member
163 if (msc->touches[idx].size < 8) { in magicmouse_firm_touch()
194 int x = msc->touches[id].x; in magicmouse_emit_buttons()
255 msc->touches[id].x = x; in magicmouse_emit_touch()
256 msc->touches[id].y = y; in magicmouse_emit_touch()
257 msc->touches[id].size = size; in magicmouse_emit_touch()
265 int step_x = msc->touches[id].scroll_x - x; in magicmouse_emit_touch()
[all …]
/linux-6.12.1/drivers/input/touchscreen/
Dektf2127.c58 struct input_mt_pos *touches) in ektf2127_parse_coordinates() argument
66 touches[i].x = (buf[index] & 0x0f); in ektf2127_parse_coordinates()
67 touches[i].x <<= 8; in ektf2127_parse_coordinates()
68 touches[i].x |= buf[index + 2]; in ektf2127_parse_coordinates()
70 touches[i].y = (buf[index] & 0xf0); in ektf2127_parse_coordinates()
71 touches[i].y <<= 4; in ektf2127_parse_coordinates()
72 touches[i].y |= buf[index + 1]; in ektf2127_parse_coordinates()
78 struct input_mt_pos touches[EKTF2127_MAX_TOUCHES]; in ektf2127_report_event() local
85 "Too many touches %d > %d\n", in ektf2127_report_event()
90 ektf2127_parse_coordinates(buf, touch_count, touches); in ektf2127_report_event()
[all …]
Dchipone_icn8318.c45 struct icn8318_touch touches[ICN8318_MAX_TOUCHES]; member
106 dev_warn(dev, "Too much touches %d > %d\n", in icn8318_irq()
112 struct icn8318_touch *touch = &touch_data.touches[i]; in icn8318_irq()
Dchipone_icn8505.c65 struct icn8505_touch touches[ICN8505_MAX_TOUCHES]; member
336 dev_warn(dev, "Too many touches %d > %d\n", in icn8505_irq()
342 struct icn8505_touch *touch = &touch_data.touches[i]; in icn8505_irq()
/linux-6.12.1/tools/testing/selftests/hid/tests/
Dtest_wacom_generic.py983 Ensure that all confident touches are reported and that all non-
984 confident touches are ignored.
989 touches = self.make_contacts(5)
990 touches[0].confidence = False
991 touches[2].confidence = False
992 touches[4].confidence = False
994 r = uhdev.event(touches)
1019 touches = self.make_contacts(len(state), t)
1021 for item in zip(touches, state):
1025 r = uhdev.event(touches)
/linux-6.12.1/Documentation/input/
Devent-codes.rst174 purpose. A trackpad event generated by finger touches should generate events
371 Depending on the device, the rectangle may enclose all touches, like a
373 touches. The diversity makes the rectangle of limited use, but some
437 be used to report the number of touches active on the trackpad.
/linux-6.12.1/Documentation/locking/
Dspinlocks.rst43 example, internal driver data structures that nobody else ever touches).
47 touches a shared variable has to agree about the spinlock they want
/linux-6.12.1/arch/x86/include/asm/
Dboot.h67 * Add 4 spare table in case decompressor touches anything beyond what is
/linux-6.12.1/fs/reiserfs/
Dlock.c31 /* No need to protect it, only the current task touches it */ in reiserfs_write_lock()
/linux-6.12.1/drivers/w1/
Dw1_netlink.h87 * @W1_CMD_TOUCH: Touches a series of bytes.
/linux-6.12.1/drivers/gpu/drm/i915/
Di915_file_private.h72 * touches a struct i915_gem_proto_context is guarded by
/linux-6.12.1/arch/microblaze/include/asm/
Dthread_info.h136 * ever touches our thread-synchronous status, so we don't
/linux-6.12.1/tools/testing/selftests/powerpc/math/
Dvmx_asm.S9 # Should be safe from C, only touches r4, r5 and v0,v1,v2
/linux-6.12.1/Documentation/devicetree/bindings/input/touchscreen/
Dcypress,cy8ctma340.yaml100 touches are detected before entering low-power mode
/linux-6.12.1/kernel/
Dgen_kheaders.sh46 # changed, Kconfig touches the corresponding timestamp file include/config/*.
/linux-6.12.1/arch/sh/include/asm/
Dthread_info.h142 * ever touches our thread-synchronous status, so we don't
/linux-6.12.1/Documentation/ABI/testing/
Dsysfs-driver-wacom39 when the stylus touches the tablet surface, or any button is
/linux-6.12.1/Documentation/devicetree/bindings/input/
Dmicrochip,cap11xx.yaml80 At the more sensitive settings, touches are detected for a smaller delta
/linux-6.12.1/drivers/gpu/drm/etnaviv/
Detnaviv_cmd_parser.c125 "%s: load state touches restricted state 0x%x at offset %u\n", in etnaviv_validate_load_state()
/linux-6.12.1/arch/arm/mm/
Dproc-v7m.S151 stmiane sp, {r0-r6, lr} @ v7m_invalidate_l1 touches r0-r6
/linux-6.12.1/include/linux/
Dvia-core.h74 * The framebuffer MMIO region. Little, if anything, touches
/linux-6.12.1/arch/hexagon/kernel/
Dhead.S116 * The subroutine wrapper around the virtual instruction touches
/linux-6.12.1/arch/sparc/include/asm/
Dthread_info_64.h225 * ever touches our thread-synchronous status, so we don't
/linux-6.12.1/drivers/firmware/efi/libstub/
DMakefile49 # stub code never touches, so let's turn off struct randomization for the stub
/linux-6.12.1/lib/
Dlru_cache.c436 * "touches" and returns it.
501 * "touches" and returns it.

12345