(IntBuffer buf, int[] arr)
| 2605 | |
| 2606 | |
| 2607 | protected static void putIntArray(IntBuffer buf, int[] arr) { |
| 2608 | if (!buf.hasArray() || buf.array() != arr) { |
| 2609 | buf.position(0); |
| 2610 | buf.put(arr); |
| 2611 | buf.rewind(); |
| 2612 | } |
| 2613 | } |
| 2614 | |
| 2615 | |
| 2616 | protected static void fillIntBuffer(IntBuffer buf, int i0, int i1, int val) { |
no test coverage detected