HomeSort by relevance Sort by last modified time
    Searched defs:hypot (Results 1 - 12 of 12) sorted by null

  /dalvik/libcore/luni/src/main/java/java/lang/
Math.java 360 * <li>{@code hypot(+infinity, (anything including NaN)) = +infinity}</li>
361 * <li>{@code hypot(-infinity, (anything including NaN)) = +infinity}</li>
362 * <li>{@code hypot((anything including NaN), +infinity) = +infinity}</li>
363 * <li>{@code hypot((anything including NaN), -infinity) = +infinity}</li>
364 * <li>{@code hypot(NaN, NaN) = NaN}</li>
375 public static native double hypot(double x, double y); method in class:Math
    [all...]
StrictMath.java 363 * <li>{@code hypot(+infinity, (anything including NaN)) = +infinity}</li>
364 * <li>{@code hypot(-infinity, (anything including NaN)) = +infinity}</li>
365 * <li>{@code hypot((anything including NaN), +infinity) = +infinity}</li>
366 * <li>{@code hypot((anything including NaN), -infinity) = +infinity}</li>
367 * <li>{@code hypot(NaN, NaN) = NaN}</li>
378 public static native double hypot(double x, double y); method in class:StrictMath
    [all...]
  /external/stlport/stlport/stl/
_cmath.h 50 // All the other hypot stuff is going to be at file scope, so follow along here.
53 extern "C" double hypot(double x, double y);
383 _STLP_DMATH_INLINE2(hypot)
495 # pragma warning (disable : 4996) // hypot is deprecated.
497 _STLP_MATH_INLINE2XX(float, hypot, hypot)
498 inline long double hypot(long double x, long double y) { return sqrt(x * x + y * y); } function
504 inline double hypot(double x, double y) { return sqrt(x * x + y * y); } function
505 _STLP_DEF_MATH_INLINE2(hypot, hypot)
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/
tgmath.h 142 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/
tgmath.h 139 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/
tgmath.h 142 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/
tgmath.h 139 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/X11/
Xw32defs.h 46 #define hypot _hypot macro
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 1149 milliseconds