readUshort static method

int readUshort(
  1. List<int> buff,
  2. int p
)

Implementation

static int readUshort(List<int> buff, int p) {
  return (buff[p] << 8) | buff[p + 1];
}