Searched refs:n_hi (Results 1 – 4 of 4) sorted by relevance
/linux-6.1.9/arch/x86/include/asm/ ! |
D | acenv.h | 42 #define ACPI_DIV_64_BY_32(n_hi, n_lo, d32, q32, r32) \ argument 46 "0"(n_lo), "1"(n_hi)) 48 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \ argument 51 : "=r"(n_hi), "=r"(n_lo) \ 52 : "0"(n_hi), "1"(n_lo))
|
/linux-6.1.9/include/acpi/platform/ ! |
D | aclinuxex.h | 18 #define ACPI_DIV_64_BY_32(n_hi, n_lo, d32, q32, r32) \ argument 20 u64 (__n) = ((u64) n_hi) << 32 | (n_lo); \ 27 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \ argument 30 (n_lo) |= (((n_hi) & 1) << 31); \ 31 (n_hi) >>= 1; \
|
/linux-6.1.9/include/asm-generic/ ! |
D | div64.h | 176 uint32_t n_hi = n >> 32; in __arch_xprod_64() local 194 res += (uint64_t)m_lo * n_hi; in __arch_xprod_64() 198 res += (uint64_t)m_lo * n_hi; in __arch_xprod_64() 206 res += (uint64_t)m_hi * n_hi; in __arch_xprod_64()
|
/linux-6.1.9/arch/x86/kernel/ ! |
D | sys_ia32.c | 105 unsigned int, n_hi, int, flags) in SYSCALL_DEFINE6() argument 109 ((u64)n_hi << 32) | n_low, flags); in SYSCALL_DEFINE6()
|