rotr64 static method
Implementation
static Int64 rotr64(final Int64 x, final int rot) {
return x.shiftRightUnsigned(rot) | x << (64 - rot);
}
static Int64 rotr64(final Int64 x, final int rot) {
return x.shiftRightUnsigned(rot) | x << (64 - rot);
}