Searched refs:n_lo (Results 1 – 4 of 4) sorted by relevance
/titanic_50/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 112 __asm mov eax, n_lo \ 118 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \ argument 121 __asm rcr n_lo, 1 \ 127 #define ACPI_DIV_64_BY_32(n_hi, n_lo, d32, q32, r32) \ argument 130 r32 = n_lo / d32; \ 133 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \ argument 136 n_lo >>= 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 63 (n_lo) >>= 1; \ 64 (n_lo) |= (((n_hi) & 1) << 31); \
|
H A D | acos2.h | 80 #define ACPI_SHIFT_RIGHT_64(n_hi, n_lo) \ argument 83 val = n_lo | ( ((unsigned long long)h_hi) << 32 ); \ 86 n_lo = (unsigned long)(val & 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 253 (n_lo) >>= 1; \ 254 (n_lo) |= (((n_hi) & 1) << 31); \
|