__ull_rshift (Windows Embedded CE 6.0)
1/5/2010
This function shifts a 64-bit unsigned word to the right a specified number of bits.
Syntax
unsigned __int64 __cdecl __ull_rshift(
unsigned__int64 Mask,
int nBit
);
Parameters
- Mask
[in] The value to shift.
- nBit
[in] The number of bits to shift.
Return Values
The mask value shifted by nBit bits.
Remarks
If the second parameter is greater than 31 on x86 (63 on x64), that number is taken modulo 32 (64 on x64) to determine the number of bits to shift. The ull in the name indicates unsigned long long (unsigned __int64).
Requirements
Architecture | MIPS 32, MIPS IV, MIPS16, MIPSII, MIPSIII |
Header | winnt.h |
Routine | __ull_rshift |