Home
last modified time | relevance | path

Searched refs:find_first_zero_bit (Results 1 – 25 of 199) sorted by relevance

12345678

/Linux-v4.19/include/asm-generic/bitops/
Dfind.h70 extern unsigned long find_first_zero_bit(const unsigned long *addr,
77 #ifndef find_first_zero_bit
78 #define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0) macro
Dle.h27 return find_first_zero_bit(addr, size); in find_first_zero_bit_le()
/Linux-v4.19/tools/include/asm-generic/bitops/
Dfind.h65 #ifndef find_first_zero_bit
75 unsigned long find_first_zero_bit(const unsigned long *addr, unsigned long size);
/Linux-v4.19/arch/unicore32/include/asm/
Dbitops.h45 #define find_first_zero_bit find_first_zero_bit macro
/Linux-v4.19/lib/
Dfind_bit.c116 #ifndef find_first_zero_bit
120 unsigned long find_first_zero_bit(const unsigned long *addr, unsigned long size) in find_first_zero_bit() function
131 EXPORT_SYMBOL(find_first_zero_bit);
/Linux-v4.19/tools/lib/
Dfind_bit.c96 #ifndef find_first_zero_bit
100 unsigned long find_first_zero_bit(const unsigned long *addr, unsigned long size) in find_first_zero_bit() function
/Linux-v4.19/arch/m68k/include/asm/
Dbitops.h317 static inline int find_first_zero_bit(const unsigned long *vaddr, in find_first_zero_bit() function
341 #define find_first_zero_bit find_first_zero_bit macro
369 return offset + find_first_zero_bit(p, size - offset); in find_next_zero_bit()
/Linux-v4.19/arch/unicore32/lib/
Dfindbit.S20 ENTRY(find_first_zero_bit)
32 ENDPROC(find_first_zero_bit)
/Linux-v4.19/arch/mips/sgi-ip27/
Dip27-irqno.c19 irq = find_first_zero_bit(irq_map, NR_IRQS); in allocate_irqno()
Dip27-irq-pci.c71 level = find_first_zero_bit(hub->irq_alloc_mask, LEVELS_PER_SLICE); in alloc_level()
/Linux-v4.19/arch/arm/include/asm/
Dbitops.h200 #define find_first_zero_bit(p,sz) _find_first_zero_bit_le(p,sz) macro
209 #define find_first_zero_bit(p,sz) _find_first_zero_bit_be(p,sz) macro
/Linux-v4.19/arch/unicore32/kernel/
Dksyms.c27 EXPORT_SYMBOL(find_first_zero_bit);
/Linux-v4.19/arch/sh/kernel/cpu/irq/
Dimask.c70 find_first_zero_bit(imask_mask, IMASK_PRIORITY); in unmask_imask_irq()
/Linux-v4.19/block/
Dblk-tag.c350 tag = find_first_zero_bit(bqt->tag_map, max_depth); in blk_queue_start_tag()
359 tag = find_first_zero_bit(bqt->tag_map, size); in blk_queue_start_tag()
/Linux-v4.19/arch/sh/boards/mach-x3proto/
Dilsel.c105 bit = find_first_zero_bit(&ilsel_level_map, ILSEL_LEVELS); in ilsel_enable()
/Linux-v4.19/tools/include/linux/
Dbitops.h43 for ((bit) = find_first_zero_bit((addr), (size)); \
Dbitmap.h63 return find_first_zero_bit(src, nbits) == nbits; in bitmap_full()
/Linux-v4.19/drivers/infiniband/hw/cxgb4/
Did_table.c53 obj = find_first_zero_bit(alloc->table, alloc->max); in c4iw_id_alloc()
/Linux-v4.19/drivers/infiniband/hw/vmw_pvrdma/
Dpvrdma_doorbell.c95 obj = find_first_zero_bit(tbl->table, tbl->max); in pvrdma_uar_alloc()
/Linux-v4.19/drivers/gpu/host1x/
Dchannel.c114 index = find_first_zero_bit(chlist->allocated_channels, max_channels); in acquire_unused_channel()
/Linux-v4.19/fs/minix/
Dminix.h117 find_first_zero_bit((unsigned long *)(addr), (size))
/Linux-v4.19/drivers/net/ethernet/mellanox/mlx5/core/lib/
Dmpfs.c83 *ix = find_first_zero_bit(l2table->bitmap, l2table->size); in alloc_l2table_index()
/Linux-v4.19/drivers/gpu/drm/amd/amdkfd/
Dkfd_doorbell.c173 inx = find_first_zero_bit(kfd->doorbell_available_index, in kfd_get_kernel_doorbell()
/Linux-v4.19/drivers/irqchip/
Dirq-mips-cpu.c193 hwirq = find_first_zero_bit(state->allocated, 2); in mips_cpu_ipi_alloc()
/Linux-v4.19/sound/soc/qcom/
Dlpass-apq8016.c143 chan = find_first_zero_bit(&drvdata->dma_ch_bit_map, in apq8016_lpass_alloc_dma_channel()

12345678