Searched refs:__high (Results 1 – 3 of 3) sorted by relevance
/Linux-v6.1/drivers/gpu/drm/i915/ |
D | i915_reg_defs.h | 34 #define REG_GENMASK(__high, __low) \ argument 35 ((u32)(GENMASK(__high, __low) + \ 36 BUILD_BUG_ON_ZERO(__is_constexpr(__high) && \ 38 ((__low) < 0 || (__high) > 31 || (__low) > (__high))))) 49 #define REG_GENMASK64(__high, __low) \ argument 50 ((u64)(GENMASK_ULL(__high, __low) + \ 51 BUILD_BUG_ON_ZERO(__is_constexpr(__high) && \ 53 ((__low) < 0 || (__high) > 63 || (__low) > (__high)))))
|
/Linux-v6.1/arch/mips/include/asm/ |
D | div64.h | 60 unsigned long __upper, __low, __high, __radix; \ 68 __high = __div >> 32; \ 71 if (__high < __radix) { \ 72 __upper = __high; \ 73 __high = 0; \ 75 __upper = __high % __radix; \ 76 __high /= __radix; \ 81 __quot = __high; \
|
/Linux-v6.1/arch/x86/include/asm/ |
D | div64.h | 24 unsigned long __upper, __low, __high, __mod, __base; \ 30 asm("" : "=a" (__low), "=d" (__high) : "A" (n));\ 31 __upper = __high; \ 32 if (__high) { \ 33 __upper = __high % (__base); \ 34 __high = __high / (__base); \ 38 asm("" : "=A" (n) : "a" (__low), "d" (__high)); \
|