ZSHIFT static method

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

Implementation

static int ZSHIFT(int n, int d) {
  return (n & 0xFFFFFFFF) >> d;
}