Searched refs:next_one (Results 1 – 4 of 4) sorted by relevance
/linux-6.1.9/tools/power/cpupower/debug/i386/ |
D | dump_psb.c | 114 goto next_one; in decode_psb() 128 next_one: in decode_psb()
|
/linux-6.1.9/drivers/media/rc/ |
D | ite-cir.c | 138 unsigned int next_one, next_zero, size; in ite_decode_bytes() local 146 next_one = find_next_bit_le(ldata, size, 0); in ite_decode_bytes() 147 if (next_one > 0) { in ite_decode_bytes() 149 ev.duration = ITE_BITS_TO_US(next_one, sample_period); in ite_decode_bytes() 153 while (next_one < size) { in ite_decode_bytes() 154 next_zero = find_next_zero_bit_le(ldata, size, next_one + 1); in ite_decode_bytes() 156 ev.duration = ITE_BITS_TO_US(next_zero - next_one, sample_period); in ite_decode_bytes() 160 next_one = find_next_bit_le(ldata, size, next_zero + 1); in ite_decode_bytes() 162 ev.duration = ITE_BITS_TO_US(next_one - next_zero, in ite_decode_bytes() 166 next_one = size; in ite_decode_bytes()
|
/linux-6.1.9/kernel/time/ |
D | timer_list.c | 68 next_one: in print_active_timers() 93 goto next_one; in print_active_timers()
|
/linux-6.1.9/drivers/net/ethernet/mellanox/mlx5/core/ |
D | en_rx.c | 500 int next_one, count; in bitmap_find_window() local 502 next_one = find_next_bit(bitmap, bitmap_size, first); in bitmap_find_window() 503 if (next_one == bitmap_size) { in bitmap_find_window() 506 next_one = find_next_bit(bitmap, bitmap_size, 0); in bitmap_find_window() 507 count = next_one + bitmap_size - first; in bitmap_find_window() 509 count = next_one - first; in bitmap_find_window()
|