Hex Editor - Binary File Editing Software for Windows
Download Hex Editor Neo Hide this button

ShiftOpType Enumeration

SymbolValueDescription
ShiftOpLogicalLeft0Logical left shift: x[i] <<= operand;
ShiftOpLogicalRight1Logical right shift: x[i] >>= operand;
ShiftOpArithmeticLeft2Arithmetic left shift (equivalent to ShiftOpLogicalLeft): x[i] <<= operand;
ShiftOpArithemticRight3Arithmetic right shift: x[i] >>= operand; // performs sign extension
ShiftOpRotateLeft4Rotate left.
ShiftOpRotateRight5Rotate right.