shft static method

int shft(
  1. int p
)

Implementation

static int shft(int p) {
  return ((p ~/ 8) | 0) + ((p & 7) == 0?(p & 7):1);
}