(int size)
| 2390 | |
| 2391 | |
| 2392 | protected static ShortBuffer allocateShortBuffer(int size) { |
| 2393 | if (USE_DIRECT_BUFFERS) { |
| 2394 | return allocateDirectShortBuffer(size); |
| 2395 | } else { |
| 2396 | return ShortBuffer.allocate(size); |
| 2397 | } |
| 2398 | } |
| 2399 | |
| 2400 | |
| 2401 | protected static ShortBuffer allocateShortBuffer(short[] arr) { |
no test coverage detected