Searched refs:n_hi (Results 1 - 4 of 4) sorted by relevance

/linux-master/arch/x86/include/asm/
H A Dacenv.h42 #define ACPI_DIV_64_BY_32(n_hi, n_lo, d32, q32, r32) \
46 "0"(n_lo), "1"(n_hi))
48 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \
51 : "=r"(n_hi), "=r"(n_lo) \
52 : "0"(n_hi), "1"(n_lo))
/linux-master/include/acpi/platform/
H A Daclinuxex.h18 #define ACPI_DIV_64_BY_32(n_hi, n_lo, d32, q32, r32) \
20 u64 (__n) = ((u64) n_hi) << 32 | (n_lo); \
27 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \
30 (n_lo) |= (((n_hi) & 1) << 31); \
31 (n_hi) >>= 1; \
/linux-master/include/asm-generic/
H A Ddiv64.h176 uint32_t n_hi = n >> 32; local
194 res += (uint64_t)m_lo * n_hi;
198 res += (uint64_t)m_lo * n_hi;
206 res += (uint64_t)m_hi * n_hi;
/linux-master/arch/x86/kernel/
H A Dsys_ia32.c105 unsigned int, n_hi, int, flags)
109 ((u64)n_hi << 32) | n_low, flags);

Completed in 208 milliseconds