(int size)
| 526 | } |
| 527 | |
| 528 | public static IntBuffer nextIntBuffer(int size) |
| 529 | { |
| 530 | ByteBuffer bytebuffer = bigBuffer; |
| 531 | int i = bytebuffer.limit(); |
| 532 | bytebuffer.position(i).limit(i + size * 4); |
| 533 | return bytebuffer.asIntBuffer(); |
| 534 | } |
| 535 | |
| 536 | private static FloatBuffer nextFloatBuffer(int size) |
| 537 | { |
no test coverage detected