shiftr8 function

int shiftr8(
  1. int x,
  2. int n
)

Implementation

int shiftr8(int x, int n) {
  assert((x >= 0) && (x <= _MASK_8));
  return x >> (n & _MASK_3);
}