Searched refs:low_bit (Results 1 - 11 of 11) sorted by relevance
/kernel/linux/linux-5.10/drivers/gpu/drm/exynos/ |
H A D | regs-vp.h | 52 #define VP_MASK(high_bit, low_bit) \ 53 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit)) 55 #define VP_MASK_VAL(val, high_bit, low_bit) \ 56 (((val) << (low_bit)) & VP_MASK(high_bit, low_bit))
|
H A D | regs-mixer.h | 66 #define MXR_MASK(high_bit, low_bit) \ 67 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit)) 69 #define MXR_MASK_VAL(val, high_bit, low_bit) \ 70 (((val) << (low_bit)) & MXR_MASK(high_bit, low_bit))
|
/kernel/linux/linux-6.6/drivers/gpu/drm/exynos/ |
H A D | regs-vp.h | 52 #define VP_MASK(high_bit, low_bit) \ 53 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit)) 55 #define VP_MASK_VAL(val, high_bit, low_bit) \ 56 (((val) << (low_bit)) & VP_MASK(high_bit, low_bit))
|
H A D | regs-mixer.h | 66 #define MXR_MASK(high_bit, low_bit) \ 67 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit)) 69 #define MXR_MASK_VAL(val, high_bit, low_bit) \ 70 (((val) << (low_bit)) & MXR_MASK(high_bit, low_bit))
|
/kernel/linux/linux-5.10/drivers/pinctrl/mediatek/ |
H A D | pinctrl-mtk-common.h | 74 * @low_bit: The lowest bit of this group. 81 unsigned char low_bit; member 90 .low_bit = _low, \
|
H A D | pinctrl-mtk-common.c | 213 bits = drv_grp->high_bit - drv_grp->low_bit + 1; in mtk_pconf_set_driving() 215 shift = pin_drv->bit + drv_grp->low_bit; in mtk_pconf_set_driving()
|
/kernel/linux/linux-6.6/drivers/pinctrl/mediatek/ |
H A D | pinctrl-mtk-common.h | 74 * @low_bit: The lowest bit of this group. 81 unsigned char low_bit; member 90 .low_bit = _low, \
|
H A 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()
|
/kernel/linux/linux-5.10/arch/mips/include/asm/octeon/ |
H A D | cvmx.h | 145 * @low_bit: Lowest bit value can occupy inclusive 0-high_bit 150 uint64_t low_bit, uint64_t value) in cvmx_build_bits() 152 return (value & cvmx_build_mask(high_bit - low_bit + 1)) << low_bit; in cvmx_build_bits() 149 cvmx_build_bits(uint64_t high_bit, uint64_t low_bit, uint64_t value) cvmx_build_bits() argument
|
/kernel/linux/linux-6.6/arch/mips/include/asm/octeon/ |
H A D | cvmx.h | 145 * @low_bit: Lowest bit value can occupy inclusive 0-high_bit 150 uint64_t low_bit, uint64_t value) in cvmx_build_bits() 152 return (value & cvmx_build_mask(high_bit - low_bit + 1)) << low_bit; in cvmx_build_bits() 149 cvmx_build_bits(uint64_t high_bit, uint64_t low_bit, uint64_t value) cvmx_build_bits() argument
|
/kernel/linux/linux-6.6/tools/testing/selftests/kvm/include/x86_64/ |
H A D | processor.h | 227 #define KVM_X86_CPU_PROPERTY(fn, idx, gpr, low_bit, high_bit) \ 233 .lo_bit = low_bit, \ 237 kvm_static_assert(low_bit < high_bit); \
|
Completed in 10 milliseconds