Home
last modified time | relevance | path

Searched refs:low_bit (Results 1 – 5 of 5) sorted by relevance

/Linux-v4.19/drivers/gpu/drm/exynos/
Dregs-vp.h55 #define VP_MASK(high_bit, low_bit) \ argument
56 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
58 #define VP_MASK_VAL(val, high_bit, low_bit) \ argument
59 (((val) << (low_bit)) & VP_MASK(high_bit, low_bit))
Dregs-mixer.h69 #define MXR_MASK(high_bit, low_bit) \ argument
70 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
72 #define MXR_MASK_VAL(val, high_bit, low_bit) \ argument
73 (((val) << (low_bit)) & MXR_MASK(high_bit, low_bit))
/Linux-v4.19/arch/mips/include/asm/octeon/
Dcvmx.h150 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-v4.19/drivers/pinctrl/mediatek/
Dpinctrl-mtk-common.h89 unsigned char low_bit; member
98 .low_bit = _low, \
Dpinctrl-mtk-common.c221 bits = drv_grp->high_bit - drv_grp->low_bit + 1; in mtk_pconf_set_driving()
223 shift = pin_drv->bit + drv_grp->low_bit; in mtk_pconf_set_driving()