Searched refs:high_bit (Results 1 – 5 of 5) sorted by relevance
/linux/drivers/gpu/drm/exynos/ |
A 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))
|
A 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/drivers/pinctrl/mediatek/ |
A D | pinctrl-mtk-common.h | 82 unsigned char high_bit; member 91 .high_bit = _high, \
|
A D | pinctrl-mtk-common.c | 212 bits = drv_grp->high_bit - drv_grp->low_bit + 1; in mtk_pconf_set_driving()
|
/linux/arch/mips/include/asm/octeon/ |
A D | cvmx.h | 149 static inline uint64_t cvmx_build_bits(uint64_t high_bit, in cvmx_build_bits() argument 152 return (value & cvmx_build_mask(high_bit - low_bit + 1)) << low_bit; in cvmx_build_bits()
|
Completed in 10 milliseconds