(long pRosti, long oldSize)
| 367 | } |
| 368 | |
| 369 | public static void updateMemoryUsage(long pRosti, long oldSize) { |
| 370 | long newSize = Rosti.getAllocMemory(pRosti); |
| 371 | Unsafe.recordMemAlloc(newSize - oldSize, MemoryTag.NATIVE_ROSTI); |
| 372 | } |
| 373 | |
| 374 | private static native long alloc(long pKeyTypes, int keyTypeCount, long capacity); |
| 375 |
no test coverage detected