RROT static method

int RROT(
  1. int n,
  2. int d
)

Implementation

static int RROT(int n, int d) {
  return ZSHIFT(n, d) | (n << (32 - d));
}