Searched refs:n_hi (Results 1 – 4 of 4) sorted by relevance
/titanic_41/usr/src/uts/intel/sys/acpi/platform/ |
H A D | acmsvc.h | 109 #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 D | aclinuxex.h | 52 #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 D | acos2.h | 80 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \ argument 85 n_hi = (unsigned long)((val >> 32 ) & 0xffffffff ); \
|
H A D | acefi.h | 245 #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; \
|