(IntBuffer buf)
| 3657 | } |
| 3658 | |
| 3659 | private static IntBuffer fillIntBufferZero(IntBuffer buf) |
| 3660 | { |
| 3661 | int i = buf.limit(); |
| 3662 | |
| 3663 | for (int j = buf.position(); j < i; ++j) |
| 3664 | { |
| 3665 | buf.put(j, 0); |
| 3666 | } |
| 3667 | |
| 3668 | return buf; |
| 3669 | } |
| 3670 | |
| 3671 | public static void uninit() |
| 3672 | { |