Lines Matching refs:maxbit
606 static int bits_to_user(unsigned long *bits, unsigned int maxbit, in bits_to_user() argument
612 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t); in bits_to_user()
623 len = BITS_TO_LONGS(maxbit) * sizeof(long); in bits_to_user()
634 static int bits_to_user(unsigned long *bits, unsigned int maxbit, in bits_to_user() argument
638 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) : in bits_to_user()
639 BITS_TO_LONGS(maxbit) * sizeof(long); in bits_to_user()
650 static int bits_to_user(unsigned long *bits, unsigned int maxbit, in bits_to_user() argument
653 int len = BITS_TO_LONGS(maxbit) * sizeof(long); in bits_to_user()
787 unsigned long *bits, unsigned int maxbit, in evdev_handle_get_val() argument
795 len = BITS_TO_LONGS(maxbit) * sizeof(unsigned long); in evdev_handle_get_val()
811 ret = bits_to_user(mem, maxbit, maxlen, p, compat); in evdev_handle_get_val()