(IntBuffer buf, int[] arr)
| 2547 | |
| 2548 | |
| 2549 | protected static void putIntArray(IntBuffer buf, int[] arr) { |
| 2550 | if (!buf.hasArray() || buf.array() != arr) { |
| 2551 | buf.position(0); |
| 2552 | buf.put(arr); |
| 2553 | buf.rewind(); |
| 2554 | } |
| 2555 | } |
| 2556 | |
| 2557 | |
| 2558 | protected static void fillIntBuffer(IntBuffer buf, int i0, int i1, int val) { |
no test coverage detected