(OutputStream out, long v)
| 221 | } |
| 222 | |
| 223 | public static void writeInt4(OutputStream out, long v) throws IOException { |
| 224 | byte[] b4 = new byte[4]; |
| 225 | putInt4(b4, 0, v); |
| 226 | out.write(b4); |
| 227 | } |
| 228 | public static void putInt4(byte[] data, int offset, long v) { |
| 229 | int i = offset; |
| 230 | data[i++] = (byte)((v >>> 0) & 0xFF); |
no test coverage detected