shft method

int shft(
  1. int p
)

Implementation

int shft(int p) { return ((p + 7) ~/ 8) | 0; }