HomeSort by relevance Sort by last modified time
    Searched full:hypot (Results 151 - 175 of 720) sorted by null

1 2 3 4 5 67 8 91011>>

  /development/ndk/platforms/android-23/arch-arm/symbols/
libm.so.functions.txt 148 hypot
libm.so.versions.txt 152 hypot;
  /development/ndk/platforms/android-23/arch-arm64/symbols/
libm.so.functions.txt 148 hypot
libm.so.versions.txt 152 hypot;
  /development/ndk/platforms/android-23/arch-mips/symbols/
libm.so.functions.txt 148 hypot
libm.so.versions.txt 152 hypot;
  /development/ndk/platforms/android-23/arch-mips64/symbols/
libm.so.functions.txt 148 hypot
libm.so.versions.txt 152 hypot;
  /development/ndk/platforms/android-23/arch-x86/symbols/
libm.so.functions.txt 148 hypot
libm.so.versions.txt 152 hypot;
  /development/ndk/platforms/android-23/arch-x86_64/symbols/
libm.so.functions.txt 148 hypot
libm.so.versions.txt 152 hypot;
  /external/fdlibm/
e_hypot.c 38 * hypot(x,y) is INF if x or y is +INF or -INF; else
39 * hypot(x,y) is NAN if x or y is NAN.
42 * hypot(x,y) returns ieee_sqrt(x^2+y^2) with error less
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMathTest.java 232 Double.POSITIVE_INFINITY, Math.hypot(Double.POSITIVE_INFINITY,
235 Double.POSITIVE_INFINITY, Math.hypot(Double.NEGATIVE_INFINITY,
238 Double.POSITIVE_INFINITY, Math.hypot(-758.2587,
241 Double.POSITIVE_INFINITY, Math.hypot(5687.21,
244 Double.POSITIVE_INFINITY, Math.hypot(Double.POSITIVE_INFINITY,
247 Double.POSITIVE_INFINITY, Math.hypot(Double.NEGATIVE_INFINITY,
249 assertTrue("Should be NaN", Double.isNaN(Math.hypot(Double.NaN,
251 assertTrue("Should be NaN", Double.isNaN(Math.hypot(-345.2680,
255 .hypot(12322.12, -2396393.2258), 0D);
257 Math.hypot(-138.16951162, 0.13817035864), 0D)
    [all...]
OldAndroidStrictMathTest.java 228 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.POSITIVE_INFINITY,
231 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.NEGATIVE_INFINITY,
234 Double.POSITIVE_INFINITY, StrictMath.hypot(-758.2587,
237 Double.POSITIVE_INFINITY, StrictMath.hypot(5687.21,
240 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.POSITIVE_INFINITY,
243 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.NEGATIVE_INFINITY,
245 assertTrue("Should return NaN", Double.isNaN(StrictMath.hypot(Double.NaN,
247 assertTrue("Should return NaN", Double.isNaN(StrictMath.hypot(-345.2680,
251 .hypot(12322.12, -2396393.2258));
253 StrictMath.hypot(-138.16951162, 0.13817035864))
    [all...]
  /external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/
__clang_cuda_math_forward_declares.h 97 __DEVICE__ double hypot(double, double);
98 __DEVICE__ float hypot(float, float);
214 using ::hypot;
  /art/runtime/arch/arm64/
entrypoints_init_arm64.cc 73 qpoints->pHypot = hypot;
  /art/runtime/arch/x86/
entrypoints_init_x86.cc 54 qpoints->pHypot = hypot;
  /art/runtime/arch/x86_64/
entrypoints_init_x86_64.cc 61 qpoints->pHypot = hypot;
  /bionic/libm/upstream-freebsd/lib/msun/src/
catrig.c 106 * f(a, b) = (hypot(a, b) - b) / 2 = a*a / (hypot(a, b) + b) / 2
129 * Function f(a, b, hypot_a_b) = (hypot(a, b) - b) / 2.
130 * Pass hypot(a, b) as the third argument.
159 R = hypot(x, y + 1); /* |z+I| */
160 S = hypot(x, y - 1); /* |z-I| */
471 * Avoid overflow in hypot() when x and y are both very large.
478 return (CMPLX(log(hypot(x / m_e, y / m_e)) + 1, atan2(y, x)));
485 return (CMPLX(log(hypot(x, y)), atan2(y, x)));
  /developers/build/prebuilts/gradle/RevealEffectBasic/Application/src/main/java/com/example/android/revealeffectbasic/
RevealEffectBasicFragment.java 64 (float) Math.hypot(shape.getWidth(), shape.getHeight()));
  /developers/samples/android/ui/views/RevealEffect/RevealEffectBasic/Application/src/main/java/com/example/android/revealeffectbasic/
RevealEffectBasicFragment.java 64 (float) Math.hypot(shape.getWidth(), shape.getHeight()));
  /development/samples/browseable/RevealEffectBasic/src/com.example.android.revealeffectbasic/
RevealEffectBasicFragment.java 64 (float) Math.hypot(shape.getWidth(), shape.getHeight()));
  /external/opencv3/3rdparty/openexr/Imath/
ImathMath.h 119 static T hypot (T x, T y) {return ::hypot (double(x), double(y));} function in struct:Imath::Math
147 static float hypot (float x, float y) {return ::hypotf (x, y);} function in struct:Imath::Math
149 static float hypot (float x, float y) {return ::sqrtf(x*x + y*y);} function in struct:Imath::Math
  /external/opencv3/modules/cudev/include/opencv2/cudev/expr/
binary_func.hpp 69 CV_CUDEV_EXPR_BINARY_FUNC(hypot)

Completed in 505 milliseconds

1 2 3 4 5 67 8 91011>>