You can use the calculator tool to support bitwise operation. These functions can be applied to unsigned integers. Any values supplied to these functions is converted to unsigned integers before applying the function.
Function | Meaning |
---|---|
bitand(x,y) | Bitwise “and” operation on x and y |
bitor(x,y) | Bitwise “or” operation on x and y |
bitxor(x,y) | Bitwise “exclusive or” operation on x and y |
bitnot8(x) | Bitwise “not” operation on x cast to 8 bit unsigned integer |
bitnot16(x) | Bitwise “not” operation on x cast to 16 bit unsigned integer |
bitnot32(x) | Bitwise “not” operation on x cast to 32 bit unsigned integer| |
bitnot64(x) | Bitwise “not” operation on x cast to 64 bit unsigned integer |
bitshl(x,y) | Bitwise “shift left” operation on x, by y bits |
bitshr(x,y) | Bitwise “shift right” operation on x, by y bits |