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