Home
last modified time | relevance | path

Searched refs:n_hi (Results 1 – 2 of 2) sorted by relevance

/linux/arch/x86/include/asm/
H A Dacenv.h42 #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/include/acpi/platform/
H A Daclinuxex.h18 #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; \