Searched refs:maxbit (Results 1 - 5 of 5) sorted by relevance

/linux-master/drivers/clk/bcm/
H A Dclk-bcm63268-timer.c154 u8 maxbit = 0; local
158 maxbit = max(maxbit, entry->bit);
159 maxbit++;
161 hw = devm_kzalloc(&pdev->dev, struct_size(hw, data.hws, maxbit),
170 hw->data.num = maxbit;
171 for (i = 0; i < maxbit; i++)
H A Dclk-bcm63xx-gate.c488 u8 maxbit = 0; local
496 maxbit = max_t(u8, maxbit, entry->bit);
497 maxbit++;
499 hw = devm_kzalloc(&pdev->dev, struct_size(hw, data.hws, maxbit),
508 hw->data.num = maxbit;
509 for (i = 0; i < maxbit; i++)
/linux-master/drivers/input/
H A Devdev.c635 static int bits_to_user(unsigned long *bits, unsigned int maxbit, argument
641 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
652 len = BITS_TO_LONGS(maxbit) * sizeof(long);
663 static int bits_from_user(unsigned long *bits, unsigned int maxbit, argument
672 len = BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t);
689 len = BITS_TO_LONGS(maxbit) * sizeof(long);
702 static int bits_to_user(unsigned long *bits, unsigned int maxbit, argument
706 BITS_TO_LONGS_COMPAT(maxbit) * sizeof(compat_long_t) :
707 BITS_TO_LONGS(maxbit) * sizeof(long);
715 static int bits_from_user(unsigned long *bits, unsigned int maxbit, argument
736 bits_to_user(unsigned long *bits, unsigned int maxbit, unsigned int maxlen, void __user *p, int compat) argument
747 bits_from_user(unsigned long *bits, unsigned int maxbit, unsigned int maxlen, const void __user *p, int compat) argument
886 evdev_handle_get_val(struct evdev_client *client, struct input_dev *dev, unsigned int type, unsigned long *bits, unsigned int maxbit, unsigned int maxlen, void __user *p, int compat) argument
[all...]
/linux-master/arch/arm/lib/
H A Dfindbit.S136 cmp r1, r0 @ Clamp to maxbit
/linux-master/fs/
H A Dfile.c485 unsigned int maxbit = maxfd / BITS_PER_LONG; local
488 bitbit = find_next_zero_bit(fdt->full_fds_bits, maxbit, bitbit) * BITS_PER_LONG;

Completed in 127 milliseconds