(int i0, int i1)
| 187 | } |
| 188 | |
| 189 | public static int getIntBE(int i0, int i1) { |
| 190 | return (i0 << 8) + (i1 << 0); |
| 191 | } |
| 192 | public static long getIntBE(int i0, int i1, int i2) { |
| 193 | return (i0 << 16) + (i1 << 8) + (i2 << 0); |
| 194 | } |
no outgoing calls
no test coverage detected