Home
last modified time | relevance | path

Searched refs:__ffs (Results 1 – 25 of 376) sorted by relevance

12345678910>>...16

/Linux-v5.15/include/asm-generic/bitops/
Dsched.h17 return __ffs(b[0]); in sched_find_first_bit()
18 return __ffs(b[1]) + 64; in sched_find_first_bit()
21 return __ffs(b[0]); in sched_find_first_bit()
23 return __ffs(b[1]) + 32; in sched_find_first_bit()
25 return __ffs(b[2]) + 64; in sched_find_first_bit()
26 return __ffs(b[3]) + 96; in sched_find_first_bit()
Dfind.h33 return val ? __ffs(val) : size; in find_next_bit()
63 return val ? __ffs(val) : size; in find_next_and_bit()
114 return val ? __ffs(val) : size; in find_first_bit()
/Linux-v5.15/drivers/clk/ti/
Ddpll3xxx.c56 v |= clken_bits << __ffs(dd->enable_mask); in _omap3_dpll_write_clken()
71 state <<= __ffs(dd->idlest_mask); in _omap3_wait_dpll_status()
148 state <<= __ffs(dd->idlest_mask); in _omap3_noncore_dpll_lock()
336 v |= mantissa << __ffs(dd->ssc_modfreq_mant_mask); in omap3_noncore_dpll_ssc_program()
337 v |= exponent << __ffs(dd->ssc_modfreq_exp_mask); in omap3_noncore_dpll_ssc_program()
345 deltam_step <<= __ffs(dd->ssc_deltam_int_mask); in omap3_noncore_dpll_ssc_program()
352 __ffs(dd->ssc_deltam_int_mask); in omap3_noncore_dpll_ssc_program()
366 v |= deltam_step << __ffs(dd->ssc_deltam_int_mask | in omap3_noncore_dpll_ssc_program()
401 v |= freqsel << __ffs(dd->freqsel_mask); in omap3_noncore_dpll_program()
417 v |= dd->last_rounded_m << __ffs(dd->mult_mask); in omap3_noncore_dpll_program()
[all …]
Dapll.c55 state <<= __ffs(ad->idlest_mask); in dra7_apll_enable()
65 v |= APLL_FORCE_LOCK << __ffs(ad->enable_mask); in dra7_apll_enable()
68 state <<= __ffs(ad->idlest_mask); in dra7_apll_enable()
100 state <<= __ffs(ad->idlest_mask); in dra7_apll_disable()
104 v |= APLL_AUTO_IDLE << __ffs(ad->enable_mask); in dra7_apll_disable()
119 v >>= __ffs(ad->enable_mask); in dra7_apll_is_enabled()
250 v >>= __ffs(ad->enable_mask); in omap2_apll_is_enabled()
275 v |= OMAP2_EN_APLL_LOCKED << __ffs(ad->enable_mask); in omap2_apll_enable()
305 v |= OMAP2_EN_APLL_STOPPED << __ffs(ad->enable_mask); in omap2_apll_disable()
323 v |= val << __ffs(ad->autoidle_mask); in omap2_apll_set_autoidle()
Dclkt_dpll.c193 val = __ffs(mask); in _omap2_dpll_is_in_bypass()
215 v >>= __ffs(dd->enable_mask); in omap2_init_dpll_parent()
251 v >>= __ffs(dd->enable_mask); in omap2_get_dpll_rate()
258 dpll_mult >>= __ffs(dd->mult_mask); in omap2_get_dpll_rate()
260 dpll_div >>= __ffs(dd->div1_mask); in omap2_get_dpll_rate()
/Linux-v5.15/arch/mips/kernel/
Dmips-cm.c225 __ffs(CM_GCR_REV_MAJOR); in mips_cm_probe_l2sync()
309 val = core << __ffs(CM3_GCR_Cx_OTHER_CORE); in mips_cm_lock_other()
310 val |= vp << __ffs(CM3_GCR_Cx_OTHER_VP); in mips_cm_lock_other()
314 val |= cluster << __ffs(CM_GCR_Cx_OTHER_CLUSTER); in mips_cm_lock_other()
315 val |= block << __ffs(CM_GCR_Cx_OTHER_BLOCK); in mips_cm_lock_other()
345 val = core << __ffs(CM_GCR_Cx_OTHER_CORENUM); in mips_cm_lock_other()
389 cause = cm_error >> __ffs(CM_GCR_ERROR_CAUSE_ERRTYPE); in mips_cm_error_report()
390 ocause = cm_other >> __ffs(CM_GCR_ERROR_MULT_ERR2ND); in mips_cm_error_report()
449 ocause = cm_other >> __ffs(CM_GCR_ERROR_MULT_ERR2ND); in mips_cm_error_report()
/Linux-v5.15/arch/sparc/lib/
Dffs.S17 ENTRY(__ffs)
69 ENDPROC(__ffs)
70 EXPORT_SYMBOL(__ffs)
81 .word __ffs
/Linux-v5.15/arch/mips/mm/
Dsc-mips.c159 sets >>= __ffs(CM_GCR_L2_CONFIG_SET_SIZE); in mips_sc_probe_cm3()
164 line_sz >>= __ffs(CM_GCR_L2_CONFIG_LINE_SIZE); in mips_sc_probe_cm3()
169 assoc >>= __ffs(CM_GCR_L2_CONFIG_ASSOC); in mips_sc_probe_cm3()
172 c->scache.waybit = __ffs(c->scache.waysize); in mips_sc_probe_cm3()
248 c->scache.waybit = __ffs(c->scache.waysize); in mips_sc_probe()
/Linux-v5.15/lib/math/
Dgcd.c30 b >>= __ffs(b); in gcd()
35 a >>= __ffs(a); in gcd()
39 return a << __ffs(r); in gcd()
/Linux-v5.15/arch/arc/include/asm/
Dbitops.h102 static inline __attribute__ ((const)) unsigned long __ffs(unsigned long word) in __ffs() function
162 static inline __attribute__ ((const)) unsigned long __ffs(unsigned long x) in __ffs() function
183 #define ffz(x) __ffs(~(x))
/Linux-v5.15/arch/arm/mach-omap2/
Dprm33xx.c203 am33xx_prm_rmw_reg_bits(m, (pwrst << __ffs(m)), in am33xx_pwrdm_set_logic_retst()
230 v >>= __ffs(m); in am33xx_pwrdm_read_logic_retst()
244 am33xx_prm_rmw_reg_bits(m, (pwrst << __ffs(m)), in am33xx_pwrdm_set_mem_onst()
259 am33xx_prm_rmw_reg_bits(m, (pwrst << __ffs(m)), in am33xx_pwrdm_set_mem_retst()
275 v >>= __ffs(m); in am33xx_pwrdm_read_mem_pwrst()
290 v >>= __ffs(m); in am33xx_pwrdm_read_mem_retst()
Dprm2xxx_3xxx.c118 omap2_prm_rmw_mod_reg_bits(m, (pwrst << __ffs(m)), pwrdm->prcm_offs, in omap2_pwrdm_set_mem_onst()
131 omap2_prm_rmw_mod_reg_bits(m, (pwrst << __ffs(m)), pwrdm->prcm_offs, in omap2_pwrdm_set_mem_retst()
161 v = pwrst << __ffs(OMAP_LOGICRETSTATE_MASK); in omap2_pwrdm_set_logic_retst()
/Linux-v5.15/drivers/hwtracing/intel_th/
Dpti.c155 ctl |= pti->patgen << __ffs(PTI_PATGENMODE); in intel_th_pti_activate()
158 ctl |= pti->mode << __ffs(PTI_MODE); in intel_th_pti_activate()
159 ctl |= pti->clkdiv << __ffs(PTI_CLKDIV); in intel_th_pti_activate()
160 ctl |= pti->lpp_dest << __ffs(LPP_DEST); in intel_th_pti_activate()
182 pti->mode = (ctl & PTI_MODE) >> __ffs(PTI_MODE); in read_hw_config()
183 pti->clkdiv = (ctl & PTI_CLKDIV) >> __ffs(PTI_CLKDIV); in read_hw_config()
/Linux-v5.15/tools/include/asm-generic/bitops/
Dfind.h33 return val ? __ffs(val) : size; in find_next_bit()
63 return val ? __ffs(val) : size; in find_next_and_bit()
114 return val ? __ffs(val) : size; in find_first_bit()
/Linux-v5.15/arch/mips/kvm/
Dinterrupt.c33 priority = __ffs(*pending_clr); in kvm_mips_deliver_interrupts()
42 priority = __ffs(*pending); in kvm_mips_deliver_interrupts()
/Linux-v5.15/lib/
Dclz_ctz.c20 return __ffs(val); in __ctzsi2()
43 return __ffs((u32)val); in __ctzdi2()
Dfind_bit.c69 return min(start + __ffs(tmp), nbits); in _find_next_bit()
84 return min(idx * BITS_PER_LONG + __ffs(addr[idx]), size); in _find_first_bit()
/Linux-v5.15/drivers/gpio/
Dgpio-lp87565.c126 __ffs(LP87565_GPIO1_OD)), in lp87565_gpio_set_config()
128 __ffs(LP87565_GPIO1_OD))); in lp87565_gpio_set_config()
133 __ffs(LP87565_GPIO1_OD)), 0); in lp87565_gpio_set_config()
/Linux-v5.15/drivers/pinctrl/aspeed/
Dpinmux-aspeed.c20 (rv & desc->mask) >> __ffs(desc->mask), rv); in aspeed_sig_desc_print_val()
58 return ((raw & desc->mask) >> __ffs(desc->mask)) == want; in aspeed_sig_desc_eval()
/Linux-v5.15/tools/lib/
Dfind_bit.c78 return min(start + __ffs(tmp), nbits); in _find_next_bit()
92 return min(idx * BITS_PER_LONG + __ffs(addr[idx]), size); in _find_first_bit()
/Linux-v5.15/drivers/net/wireless/realtek/rtw88/
Dhci.h193 u32 shift = __ffs(mask); in rtw_read32_mask()
206 u32 shift = __ffs(mask); in rtw_read16_mask()
219 u32 shift = __ffs(mask); in rtw_read8_mask()
232 u32 shift = __ffs(mask); in rtw_write32_mask()
250 shift = __ffs(mask); in rtw_write8_mask()
/Linux-v5.15/sound/pci/ice1712/
Dwm8766.c216 val1 >>= __ffs(wm->ctl[n].mask1); in snd_wm8766_ctl_get()
219 val2 >>= __ffs(wm->ctl[n].mask2); in snd_wm8766_ctl_get()
254 val |= regval1 << __ffs(wm->ctl[n].mask1); in snd_wm8766_ctl_put()
259 val |= regval2 << __ffs(wm->ctl[n].mask2); in snd_wm8766_ctl_put()
266 val |= regval2 << __ffs(wm->ctl[n].mask2); in snd_wm8766_ctl_put()
/Linux-v5.15/drivers/gpu/drm/nouveau/nvkm/core/
Devent.c30 int type = __ffs(types); types &= ~(1 << type); in nvkm_event_put()
43 int type = __ffs(types); types &= ~(1 << type); in nvkm_event_get()
/Linux-v5.15/arch/alpha/include/asm/
Dbitops.h334 static inline unsigned long __ffs(unsigned long word) in __ffs() function
361 int result = __ffs(word) + 1; in ffs()
452 return __ffs(tmp) + ofs; in sched_find_first_bit()
/Linux-v5.15/arch/parisc/include/asm/
Dbitops.h128 static __inline__ unsigned long __ffs(unsigned long x) in __ffs() function
168 return x ? (__ffs((unsigned long)x) + 1) : 0; in ffs()

12345678910>>...16