Home
last modified time | relevance | path

Searched refs:REL_MAX (Results 1 – 16 of 16) sorted by relevance

/third_party/libevdev/test/
Dtest-event-names.c13 ck_assert(libevdev_event_code_get_name(EV_REL, REL_MAX + 1) == NULL); in START_TEST()
64 ck_assert_str_eq(libevdev_event_code_get_name(EV_REL, REL_MAX), "REL_MAX"); in START_TEST()
66 ck_assert(libevdev_event_code_get_name(EV_REL, REL_MAX - 1) == NULL); in START_TEST()
233 ck_assert_int_eq(libevdev_event_type_get_max(EV_REL), REL_MAX); in START_TEST()
278 ck_assert_int_eq(libevdev_event_is_code(&ev, EV_REL, REL_MAX + 1), 0); in START_TEST()
Dtest-event-codes.c170 ck_assert_int_eq(libevdev_event_code_from_name(EV_REL, "REL_MAX"), REL_MAX); in START_TEST()
181 ck_assert_int_eq(libevdev_event_code_from_code_name("REL_MAX"), REL_MAX); in START_TEST()
Dtest-uinput.c33 libevdev_enable_event_code(dev, EV_REL, REL_MAX, NULL); in START_TEST()
/third_party/libinput/include/linux/freebsd/
Dinput-event-codes.h804 #define REL_MAX 0x0f macro
805 #define REL_CNT (REL_MAX+1)
/third_party/FreeBSD/sys/dev/evdev/
Dinput-event-codes.h818 #define REL_MAX 0x0f macro
819 #define REL_CNT (REL_MAX+1)
/third_party/libinput/include/linux/linux/
Dinput-event-codes.h804 #define REL_MAX 0x0f macro
805 #define REL_CNT (REL_MAX+1)
/third_party/libevdev/include/linux/linux/
Dinput-event-codes.h811 #define REL_MAX 0x0f macro
812 #define REL_CNT (REL_MAX+1)
/third_party/libevdev/tools/
Dlibevdev-events.c68 print_code_bits(dev, EV_REL, REL_MAX); in print_bits()
/third_party/libevdev/include/
Devent-names.h22 static const char * const rel_map[REL_MAX + 1] = {
36 [REL_MAX] = "REL_MAX",
813 REL_MAX,
1564 { .name = "REL_MAX", .value = REL_MAX },
/third_party/flutter/skia/third_party/externals/sdl/src/core/linux/
DSDL_udev.c325 unsigned long bitmask_rel[NBITS(REL_MAX)]; in guess_device_class()
/third_party/flutter/skia/third_party/externals/sdl/src/joystick/linux/
DSDL_sysjoystick.c436 unsigned long relbit[NBITS(REL_MAX)] = { 0 }; in ConfigJoystick()
/third_party/rust/crates/libc/src/unix/linux_like/android/
Dmod.rs2405 pub const REL_MAX: ::__u16 = 0x0f; constant
2406 pub const REL_CNT: usize = REL_MAX as usize + 1;
/third_party/rust/crates/libc/libc-test/semver/
Dlinux.txt1929 REL_MAX
Dandroid.txt1881 REL_MAX
/third_party/rust/crates/libc/src/unix/linux_like/linux/
Dmod.rs3335 pub const REL_MAX: ::__u16 = 0x0f; constant
3336 pub const REL_CNT: usize = REL_MAX as usize + 1;
/third_party/libevdev/
Dthird_party_libevdev.diff25861 + ck_assert_int_eq(libevdev_event_type_from_code_name("REL_MAX"), EV_REL);
25972 + ck_assert_int_eq(libevdev_event_code_from_name(EV_REL, "REL_MAX"), REL_MAX);
25983 + ck_assert_int_eq(libevdev_event_code_from_code_name("REL_MAX"), REL_MAX);
26087 + ck_assert(libevdev_event_code_get_name(EV_REL, REL_MAX + 1) == NULL);
26138 + ck_assert_str_eq(libevdev_event_code_get_name(EV_REL, REL_MAX), "REL_MAX");
26140 + ck_assert(libevdev_event_code_get_name(EV_REL, REL_MAX - 1) == NULL);
26307 + ck_assert_int_eq(libevdev_event_type_get_max(EV_REL), REL_MAX);
26352 + ck_assert_int_eq(libevdev_event_is_code(&ev, EV_REL, REL_MAX + 1), 0);
31081 + libevdev_enable_event_code(dev, EV_REL, REL_MAX, NULL);
32467 + print_code_bits(dev, EV_REL, REL_MAX);