コード例 #1
0
jdouble fastiva_vm_StrictMath_C$__hypot(jdouble a, jdouble b) {
#ifdef _WIN32    
    FASTIVA_NOT_IMPL();
    return 0;
#else
    return ieee_hypot(a, b);
#endif
}
コード例 #2
0
static jdouble StrictMath_hypot(JNIEnv*, jclass, jdouble a, jdouble b) {
    return ieee_hypot(a, b);
}