You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a native method has a **Foo parameter, it can be mapped by passing a long[1] array from Java. The generated JNI code uses a pair of GetLongArrayElements / ReleaseLongArrayElements calls to manage this (even with NO_IN), which is quite slow. A single SetLongArrayRegion call would be appropriate instead.
The text was updated successfully, but these errors were encountered:
When a native method has a **Foo parameter, it can be mapped by passing a long[1] array from Java. The generated JNI code uses a pair of GetLongArrayElements / ReleaseLongArrayElements calls to manage this (even with NO_IN), which is quite slow. A single SetLongArrayRegion call would be appropriate instead.
The text was updated successfully, but these errors were encountered: