__ll_rshift (Windows Embedded CE 6.0)
1/5/2010
This function shifts a 64-bit word to the right a specified number of bits.
Syntax
__int64 __cdecl __ll_rshift(
int64 Mask,
int nBit
);
Parameters
- Mask
[in] The value to shift.
- nBit
[in] The number of bits to shift.
Return Values
The mask shifted by nBit bits.
Remarks
If the second parameter is greater than 64 (32 on x86), that number is taken modulo 64 (32 on x86) to determine the number of bits to shift. The ll prefix indicates that this is an operation on long long, another name for __int64, the 64-bit signed integral type.
Requirements
Architecture | MIPS 32, MIPS IV, MIPS16, MIPSII, MIPSIII |
Header | winnt.h |
Routine | __ll_rshift |