| 902 | } |
| 903 | |
| 904 | extern "C" AVIAN_EXPORT void JNICALL |
| 905 | Avian_java_lang_System_arraycopy(Thread* t, object, uintptr_t* arguments) |
| 906 | { |
| 907 | arrayCopy(t, |
| 908 | reinterpret_cast<object>(arguments[0]), |
| 909 | arguments[1], |
| 910 | reinterpret_cast<object>(arguments[2]), |
| 911 | arguments[3], |
| 912 | arguments[4]); |
| 913 | } |
| 914 | |
| 915 | extern "C" AVIAN_EXPORT void JNICALL |
| 916 | Avian_java_lang_System_arraycopyCharUnchecked(Thread* t, |
no test coverage detected