Searched refs:low_bit (Results 1 – 6 of 6) sorted by relevance
/linux-6.6.21/drivers/gpu/drm/exynos/ |
D | regs-vp.h | 52 #define VP_MASK(high_bit, low_bit) \ argument 53 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit)) 55 #define VP_MASK_VAL(val, high_bit, low_bit) \ argument 56 (((val) << (low_bit)) & VP_MASK(high_bit, low_bit))
|
D | regs-mixer.h | 66 #define MXR_MASK(high_bit, low_bit) \ argument 67 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit)) 69 #define MXR_MASK_VAL(val, high_bit, low_bit) \ argument 70 (((val) << (low_bit)) & MXR_MASK(high_bit, low_bit))
|
/linux-6.6.21/arch/mips/include/asm/octeon/ |
D | cvmx.h | 150 uint64_t low_bit, uint64_t value) in cvmx_build_bits() argument 152 return (value & cvmx_build_mask(high_bit - low_bit + 1)) << low_bit; in cvmx_build_bits()
|
/linux-6.6.21/drivers/pinctrl/mediatek/ |
D | pinctrl-mtk-common.h | 81 unsigned char low_bit; member 90 .low_bit = _low, \
|
D | pinctrl-mtk-common.c | 227 bits = drv_grp->high_bit - drv_grp->low_bit + 1; in mtk_pconf_set_driving() 229 shift = pin_drv->bit + drv_grp->low_bit; in mtk_pconf_set_driving()
|
/linux-6.6.21/tools/testing/selftests/kvm/include/x86_64/ |
D | processor.h | 227 #define KVM_X86_CPU_PROPERTY(fn, idx, gpr, low_bit, high_bit) \ argument 233 .lo_bit = low_bit, \ 237 kvm_static_assert(low_bit < high_bit); \
|