/linux/arch/arc/include/asm/ |
H A D | bitops.h | 74 static inline __attribute__ ((const)) int fls(unsigned int x) in fls() function 90 return fls(x) - 1; in __fls() 97 #define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); }) 117 static inline __attribute__ ((const)) int fls(unsigned int x) in fls() function
|
/linux/fs/nfs/flexfilelayout/ |
H A D | flexfilelayout.c | 274 static void ff_layout_free_mirror_array(struct nfs4_ff_layout_segment *fls) in ff_layout_free_mirror_array() argument 278 for (i = 0; i < fls->mirror_array_cnt; i++) in ff_layout_free_mirror_array() 279 ff_layout_put_mirror(fls->mirror_array[i]); in ff_layout_free_mirror_array() 282 static void _ff_layout_free_lseg(struct nfs4_ff_layout_segment *fls) in _ff_layout_free_lseg() argument 284 if (fls) { in _ff_layout_free_lseg() 285 ff_layout_free_mirror_array(fls); in _ff_layout_free_lseg() 286 kfree(fls); in _ff_layout_free_lseg() 368 static void ff_layout_sort_mirrors(struct nfs4_ff_layout_segment *fls) in ff_layout_sort_mirrors() argument 372 for (i = 0; i < fls->mirror_array_cnt - 1; i++) { in ff_layout_sort_mirrors() 373 for (j = i + 1; j < fls->mirror_array_cnt; j++) in ff_layout_sort_mirrors() [all …]
|
H A D | flexfilelayout.h | 144 struct nfs4_ff_layout_segment *fls = FF_LAYOUT_LSEG(lseg); in FF_LAYOUT_COMP() local 146 if (idx < fls->mirror_array_cnt) in FF_LAYOUT_COMP() 147 return fls->mirror_array[idx]; in FF_LAYOUT_COMP()
|
/linux/drivers/mtd/nand/ |
H A D | bbt.c | 25 unsigned int bits_per_block = fls(NAND_BBT_BLOCK_NUM_STATUS); in nanddev_bbt_init() 74 unsigned int bits_per_block = fls(NAND_BBT_BLOCK_NUM_STATUS); in nanddev_bbt_get_block_status() 107 unsigned int bits_per_block = fls(NAND_BBT_BLOCK_NUM_STATUS); in nanddev_bbt_set_block_status()
|
H A D | ecc-sw-bch.c | 117 m = fls(1 + (8 * eccsize)); in nand_ecc_sw_bch_init() 215 conf->strength = code_size * 8 / fls(8 * conf->step_size); in nand_ecc_sw_bch_init_ctx() 220 fls(8 * conf->step_size), 8); in nand_ecc_sw_bch_init_ctx() 223 conf->strength = (code_size * 8) / fls(8 * conf->step_size); in nand_ecc_sw_bch_init_ctx()
|
/linux/arch/sparc/lib/ |
H A D | fls.S | 14 ENTRY(fls) 66 ENDPROC(fls) 67 EXPORT_SYMBOL(fls)
|
/linux/tools/include/asm-generic/bitops/ |
H A D | fls64.h | 23 return fls(h) + 32; in fls64() 24 return fls(x); in fls64()
|
H A D | fls.h | 43 #define fls(x) generic_fls(x) macro
|
/linux/include/asm-generic/bitops/ |
H A D | fls64.h | 23 return fls(h) + 32; in fls64() 24 return fls(x); in fls64()
|
H A D | builtin-fls.h | 12 static __always_inline int fls(unsigned int x) in fls() function
|
H A D | fls.h | 43 #define fls(x) generic_fls(x) macro
|
/linux/arch/csky/include/asm/ |
H A D | bitops.h | 42 static __always_inline int fls(unsigned int x) in fls() function 57 return fls(x) - 1; in __fls()
|
/linux/lib/math/ |
H A D | reciprocal_div.c | 23 l = fls(d - 1); in reciprocal_value() 42 l = fls(d - 1); in reciprocal_value_adv()
|
/linux/drivers/misc/sgi-gru/ |
H A D | grutlbpurge.c | 301 n = 1 << fls(cpus - 1); in gru_tgh_flush_init() 309 shift = max(0, fls(n - 1) - fls(MAX_LOCAL_TGH - 1)); in gru_tgh_flush_init()
|
/linux/drivers/clk/ti/ |
H A D | mux.c | 207 mask = (1 << fls(mask)) - 1; in of_mux_clk_setup() 246 mux->mask = (1 << fls(mux->mask)) - 1; in ti_clk_build_component_mux() 276 mux->mask = (1 << fls(mux->mask)) - 1; in of_ti_composite_mux_clk_setup()
|
/linux/include/linux/ |
H A D | bitops.h | 91 order = fls(count); in get_bitmask_order() 207 return fls(l); in fls_long() 216 return fls(--count); in get_count_order()
|
H A D | count_zeros.h | 26 return BITS_PER_LONG - fls(x); in count_leading_zeros()
|
/linux/sound/soc/intel/boards/ |
H A D | sof_maxim_common.c | 156 if (fls(tx_mask) > tdm_slots) { in max_98373_hw_params() 158 fls(tx_mask), tdm_slots); in max_98373_hw_params() 162 if (fls(max_98373_tdm_mask[i].rx) > tdm_slots) { in max_98373_hw_params() 164 fls(max_98373_tdm_mask[i].rx), tdm_slots); in max_98373_hw_params()
|
/linux/drivers/mtd/nand/raw/ |
H A D | nand_jedec.c | 105 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1); in nand_jedec_detect() 116 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1); in nand_jedec_detect()
|
/linux/arch/mips/rb532/ |
H A D | irq.c | 224 group = 21 + (fls(ip) - 32); in plat_irq_dispatch() 230 pend = 39 + (fls(pend) - 32); in plat_irq_dispatch()
|
/linux/arch/openrisc/include/asm/bitops/ |
H A D | fls.h | 14 static inline int fls(unsigned int x) in fls() function
|
/linux/drivers/infiniband/hw/mthca/ |
H A D | mthca_mr.c | 585 fls(dev->limits.num_mtt_segs - 1)); in mthca_init_mr_table() 594 i = fls(dev->limits.fmr_reserved_mtts - 1); in mthca_init_mr_table() 637 err = mthca_buddy_init(&dev->mr_table.tavor_fmr.mtt_buddy, fls(mtts - 1)); in mthca_init_mr_table() 642 err = mthca_buddy_alloc(&dev->mr_table.mtt_buddy, fls(mtts - 1)); in mthca_init_mr_table() 653 i = fls(dev->limits.reserved_mtts - 1); in mthca_init_mr_table()
|
/linux/drivers/irqchip/ |
H A D | irq-dw-apb-ictl.c | 172 nrirqs = 32 + fls(reg); in dw_apb_ictl_init() 174 nrirqs = fls(readl_relaxed(iobase + APB_INT_ENABLE_L)); in dw_apb_ictl_init()
|
H A D | irq-clps711x.c | 81 fls(irqstat) - 1); in clps711x_irqh() 87 fls(irqstat) - 1 + 16); in clps711x_irqh()
|
/linux/include/asm-generic/ |
H A D | getorder.h | 44 return fls(size); in get_order()
|