Home
last modified time | relevance | path

Searched refs:maxbit (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/drivers/input/
Devdev.c663 static int bits_to_user(unsigned long *bits, unsigned int maxbit, in bits_to_user() argument
669 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t); in bits_to_user()
680 len = BITS_TO_LONGS(maxbit) * sizeof(long); in bits_to_user()
691 static int bits_from_user(unsigned long *bits, unsigned int maxbit, in bits_from_user() argument
700 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t); in bits_from_user()
717 len = BITS_TO_LONGS(maxbit) * sizeof(long); in bits_from_user()
730 static int bits_to_user(unsigned long *bits, unsigned int maxbit, in bits_to_user() argument
734 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) : in bits_to_user()
735 BITS_TO_LONGS(maxbit) * sizeof(long); in bits_to_user()
743 static int bits_from_user(unsigned long *bits, unsigned int maxbit, in bits_from_user() argument
[all …]
/linux-4.4.14/arch/arm/lib/
Dfindbit.S193 cmp r1, r0 @ Clamp to maxbit
/linux-4.4.14/fs/
Dfile.c482 unsigned long maxbit = maxfd / BITS_PER_LONG; in find_next_fd() local
485 bitbit = find_next_zero_bit(fdt->full_fds_bits, maxbit, bitbit) * BITS_PER_LONG; in find_next_fd()