(byte[] data, int offset, int v)
| 271 | out.write(b2); |
| 272 | } |
| 273 | public static void putInt2BE(byte[] data, int offset, int v) { |
| 274 | int i = offset; |
| 275 | data[i+1] = (byte)((v >>> 0) & 0xFF); |
| 276 | data[i+0] = (byte)((v >>> 8) & 0xFF); |
| 277 | } |
| 278 | |
| 279 | public static void writeInt3BE(OutputStream out, long v) throws IOException { |
| 280 | byte[] b3 = new byte[3]; |
no outgoing calls
no test coverage detected