computeRelativeTag static method

int computeRelativeTag(
  1. int tag,
  2. int x,
  3. int y
)

Implementation

static int computeRelativeTag(int tag, int x, int y) {
  return tag + (y << yShift) + (x << xShift);
}