public int merge(byte high, byte low) { return (((0x000000ff & high) << 8) & 0x0000ff00) | (0x000000ff & low); }