Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/intel/sys/acpi/platform/
H A Dacmsvc.h109 #define ACPI_DIV_64_BY_32(n_hi, n_lo, d32, q32, r32) \ argument
111 __asm mov edx, n_hi \
118 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \ argument
120 __asm shr n_hi, 1 \
127 #define ACPI_DIV_64_BY_32(n_hi, n_lo, d32, q32, r32) \ argument
129 q32 = n_hi / d32; \
133 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \ argument
135 n_hi >>= 1; \
H A Daclinuxex.h52 #define ACPI_DIV_64_BY_32(n_hi, n_lo, d32, q32, r32) \ argument
54 UINT64 (__n) = ((UINT64) n_hi) << 32 | (n_lo); \
61 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \ argument
64 (n_lo) |= (((n_hi) & 1) << 31); \
65 (n_hi) >>= 1; \
H A Dacos2.h80 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \ argument
85 n_hi = (unsigned long)((val >> 32 ) & 0xffffffff ); \
H A Dacefi.h245 #define ACPI_DIV_64_BY_32(n_hi, n_lo, d32, q32, r32) \ argument
247 UINT64 __n = ((UINT64) n_hi) << 32 | (n_lo); \
251 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \ argument
254 (n_lo) |= (((n_hi) & 1) << 31); \
255 (n_hi) >>= 1; \