Searched refs:next_bit (Results 1 - 10 of 10) sorted by relevance

/linux-master/arch/arm64/tools/
H A Dgen-sysreg.awk78 if (msb != next_bit)
79 fatal(reg "." field " starts at " msb " not " next_bit)
89 next_bit = lsb - 1
125 next_bit = 63
131 if (next_bit > 0)
175 next_bit = 63
181 if (next_bit > 0)
212 if (next_bit != 63)
218 next_bit = 0
/linux-master/kernel/bpf/
H A Dlpm_trie.c241 unsigned int next_bit; local
271 next_bit = extract_bit(key->data, node->prefixlen);
272 node = rcu_dereference_check(node->child[next_bit],
314 unsigned int next_bit; local
362 next_bit = extract_bit(key->data, node->prefixlen);
363 slot = &node->child[next_bit];
394 next_bit = extract_bit(node->data, matchlen);
395 rcu_assign_pointer(new_node->child[next_bit], node);
444 unsigned int next_bit; local
472 next_bit
622 unsigned int next_bit; local
[all...]
/linux-master/fs/xfs/
H A Dxfs_buf_item.c96 int next_bit; local
146 next_bit = xfs_next_bit(blfp->blf_data_map, blfp->blf_map_size,
153 if (next_bit == -1) {
155 } else if (next_bit != last_bit + 1 ||
157 last_bit = next_bit;
158 first_bit = next_bit;
280 int next_bit; local
361 next_bit = xfs_next_bit(blfp->blf_data_map, blfp->blf_map_size,
370 if (next_bit == -1) {
375 } else if (next_bit !
[all...]
/linux-master/arch/x86/kernel/
H A Damd_gart_64.c86 static unsigned long next_bit; /* protected by iommu_bitmap_lock */ variable
101 offset = iommu_area_alloc(iommu_gart_bitmap, iommu_pages, next_bit,
110 next_bit = offset+size;
111 if (next_bit >= iommu_pages) {
112 next_bit = 0;
129 if (offset >= next_bit)
130 next_bit = offset + size;
/linux-master/lib/
H A Dtest_bitmap.c675 unsigned int nbits, next_bit; local
686 next_bit = find_next_bit(bmap2,
688 if (next_bit < round_up(nbits, BITS_PER_LONG)) {
691 nbits, next_bit);
703 unsigned int nbits, next_bit; local
715 next_bit = find_next_bit(bmap2, round_up(nbits, BITS_PER_LONG), nbits);
716 if (next_bit < round_up(nbits, BITS_PER_LONG)) {
718 " tail is not safely cleared: %d\n", nbits, next_bit);
H A Dgenalloc.c765 unsigned long next_bit = find_next_bit(map, size, index + nr); local
766 if ((next_bit - index) < len) {
767 len = next_bit - index;
773 next_bit + 1, nr, 0);
/linux-master/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_binding.c788 unsigned long i, next_bit; local
792 next_bit = i;
801 if (next_bit == i) {
802 next_bit = find_next_bit(dirty, max_num, i + 1);
803 if (next_bit >= max_num)
1015 unsigned long i, next_bit; local
1020 next_bit = i;
1035 if (next_bit == i) {
1036 next_bit = find_next_bit(dirty, max_num, i + 1);
1037 if (next_bit >
[all...]
/linux-master/drivers/fsi/
H A Dfsi-master-gpio.c136 int next_bit; local
152 next_bit = (msg & sda_mask) >> (cmd->bits - 1);
153 if (last_bit ^ next_bit) {
154 sda_out(master, next_bit);
155 last_bit = next_bit;
/linux-master/fs/btrfs/
H A Dfree-space-tree.c613 int prev_bit, next_bit; local
682 next_bit = free_space_test_bit(block_group, path, end);
684 next_bit = -1;
693 if (next_bit == 1) {
703 if (next_bit == 1) {
/linux-master/net/ceph/
H A Dosdmap.c2302 int next_bit = n << (old_bits - 1); local
2303 u32 s = next_bit | pgid->seed;

Completed in 471 milliseconds