Home
last modified time | relevance | path

Searched refs:high_bit (Results 1 – 6 of 6) sorted by relevance

/drivers/media/platform/s5p-tv/
Dregs-vp.h52 #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))
Dregs-mixer.h55 #define MXR_MASK(high_bit, low_bit) \ argument
56 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
58 #define MXR_MASK_VAL(val, high_bit, low_bit) \ argument
59 (((val) << (low_bit)) & MXR_MASK(high_bit, low_bit))
/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.h68 #define MXR_MASK(high_bit, low_bit) \ argument
69 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
71 #define MXR_MASK_VAL(val, high_bit, low_bit) \ argument
72 (((val) << (low_bit)) & MXR_MASK(high_bit, low_bit))
/drivers/pinctrl/mediatek/
Dpinctrl-mtk-common.h88 unsigned char high_bit; member
97 .high_bit = _high, \
Dpinctrl-mtk-common.c215 bits = drv_grp->high_bit - drv_grp->low_bit + 1; in mtk_pconf_set_driving()