Home
last modified time | relevance | path

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

/linux-3.4.99/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.h65 #define MXR_MASK(high_bit, low_bit) \ argument
66 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
68 #define MXR_MASK_VAL(val, high_bit, low_bit) \ argument
69 (((val) << (low_bit)) & MXR_MASK(high_bit, low_bit))
/linux-3.4.99/drivers/media/video/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))
/linux-3.4.99/arch/mips/include/asm/octeon/
Dcvmx.h147 static inline uint64_t cvmx_build_bits(uint64_t high_bit, in cvmx_build_bits() argument
150 return (value & cvmx_build_mask(high_bit - low_bit + 1)) << low_bit; in cvmx_build_bits()