Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 243 of file largeint.c.
{ LARGE_INTEGER RC; CHAR Shift; Shift = ShiftCount % 64; if (Shift < 32) { RC.QuadPart = LargeInteger.QuadPart >> Shift; } else { /* copy the sign bit */ RC.u.HighPart = (LargeInteger.u.HighPart & 0x80000000); RC.u.LowPart = LargeInteger.u.HighPart >> Shift; } return RC; }