Searched refs:bits_to_clear (Results 1 – 10 of 10) sorted by relevance
| /linux/drivers/firmware/efi/libstub/ |
| H A D | bitmap.c | 27 int bits_to_clear = BITS_PER_LONG - (start % BITS_PER_LONG); in __bitmap_clear() local 30 while (len - bits_to_clear >= 0) { in __bitmap_clear() 32 len -= bits_to_clear; in __bitmap_clear() 33 bits_to_clear = BITS_PER_LONG; in __bitmap_clear()
|
| /linux/tools/lib/ |
| H A D | bitmap.c | 128 int bits_to_clear = BITS_PER_LONG - (start % BITS_PER_LONG); in __bitmap_clear() local 131 while (len - bits_to_clear >= 0) { in __bitmap_clear() 133 len -= bits_to_clear; in __bitmap_clear() 134 bits_to_clear = BITS_PER_LONG; in __bitmap_clear()
|
| /linux/lib/ |
| H A D | bitmap.c | 398 int bits_to_clear = BITS_PER_LONG - (start % BITS_PER_LONG); in __bitmap_clear() local 401 while (len - bits_to_clear >= 0) { in __bitmap_clear() 403 len -= bits_to_clear; in __bitmap_clear() 404 bits_to_clear = BITS_PER_LONG; in __bitmap_clear()
|
| H A D | genalloc.c | 125 int bits_to_clear = BITS_PER_LONG - (start % BITS_PER_LONG); in bitmap_clear_ll() local 128 while (nr >= bits_to_clear) { in bitmap_clear_ll() 131 nr -= bits_to_clear; in bitmap_clear_ll() 132 bits_to_clear = BITS_PER_LONG; in bitmap_clear_ll()
|
| /linux/include/acpi/ |
| H A D | cppc_acpi.h | 193 extern int cppc_set_perf_limited(int cpu, u64 bits_to_clear); 300 static inline int cppc_set_perf_limited(int cpu, u64 bits_to_clear) in cppc_set_perf_limited() argument
|
| /linux/fs/btrfs/ |
| H A D | extent-io-tree.c | 606 u32 bits_to_clear = bits & ~EXTENT_CTLBITS; in clear_state_bit() local 612 ret = add_extent_changeset(state, bits_to_clear, changeset, false); in clear_state_bit() 615 state->state &= ~bits_to_clear; in clear_state_bit() 662 const u32 bits_to_clear = (bits & ~EXTENT_CTLBITS); in btrfs_clear_extent_bit_changeset() local 747 if (state->end <= end && (state->state & ~bits_to_clear) == 0) { in btrfs_clear_extent_bit_changeset() 759 ret = add_extent_changeset(state, bits_to_clear, changeset, false); in btrfs_clear_extent_bit_changeset() 814 if ((state->state & ~bits_to_clear) == 0) { in btrfs_clear_extent_bit_changeset() 826 ret = add_extent_changeset(state, bits_to_clear, changeset, false); in btrfs_clear_extent_bit_changeset()
|
| H A D | extent_io.h | 416 u32 bits_to_clear, unsigned long page_ops);
|
| /linux/fs/ntfs3/ |
| H A D | bitmap.c | 1533 int bits_to_clear = BITS_PER_LONG - (start % BITS_PER_LONG); in ntfs_bitmap_clear_le() local 1536 while (len - bits_to_clear >= 0) { in ntfs_bitmap_clear_le() 1538 len -= bits_to_clear; in ntfs_bitmap_clear_le() 1539 bits_to_clear = BITS_PER_LONG; in ntfs_bitmap_clear_le()
|
| /linux/drivers/acpi/ |
| H A D | cppc_acpi.c | 2211 int cppc_set_perf_limited(int cpu, u64 bits_to_clear) in cppc_set_perf_limited() argument 2217 if (bits_to_clear & ~CPPC_PERF_LIMITED_MASK) in cppc_set_perf_limited() 2220 if (!bits_to_clear) in cppc_set_perf_limited() 2228 new_val = current_val & ~bits_to_clear; in cppc_set_perf_limited()
|
| /linux/drivers/video/fbdev/ |
| H A D | smscufx.c | 196 u32 bits_to_clear, u32 bits_to_set) in ufx_reg_clear_and_set_bits() argument 203 data &= (~bits_to_clear); in ufx_reg_clear_and_set_bits()
|