/external/dng_sdk/source/ |
D | dng_types.h | 109 #ifdef hypot 110 #undef hypot 113 #define hypot _hypot macro
|
D | dng_rect.h | 190 return hypot ((real64) W (), in Diagonal() 333 return hypot (W (), H ()); in Diagonal()
|
/external/libcxx/test/std/numerics/c.math/ |
D | cmath.pass.cpp | 81 Ambiguous hypot(Ambiguous, Ambiguous){ return Ambiguous(); } in hypot() function 82 Ambiguous hypot(Ambiguous, Ambiguous, Ambiguous){ return Ambiguous(); } in hypot() function 1075 static_assert((std::is_same<decltype(std::hypot((float)0, (float)0)), float>::value), ""); in test_hypot() 1076 static_assert((std::is_same<decltype(std::hypot((bool)0, (float)0)), double>::value), ""); in test_hypot() 1077 …static_assert((std::is_same<decltype(std::hypot((unsigned short)0, (double)0)), double>::value), "… in test_hypot() 1078 …static_assert((std::is_same<decltype(std::hypot((int)0, (long double)0)), long double>::value), ""… in test_hypot() 1079 … static_assert((std::is_same<decltype(std::hypot((float)0, (unsigned int)0)), double>::value), ""); in test_hypot() 1080 static_assert((std::is_same<decltype(std::hypot((double)0, (long)0)), double>::value), ""); in test_hypot() 1081 …static_assert((std::is_same<decltype(std::hypot((long double)0, (unsigned long)0)), long double>::… in test_hypot() 1082 static_assert((std::is_same<decltype(std::hypot((int)0, (long long)0)), double>::value), ""); in test_hypot() [all …]
|
/external/libcxx/include/ |
D | cmath | 208 floating_point hypot (arithmetic x, arithmetic y); 212 double hypot(double x, double y, double z); // C++17 213 float hypot(float x, float y, float z); // C++17 214 long double hypot(long double x, long double y, long double z); // C++17 422 using ::hypot; 531 inline _LIBCPP_INLINE_VISIBILITY float hypot( float x, float y, float z ) {… 532 inline _LIBCPP_INLINE_VISIBILITY double hypot( double x, double y, double z ) {… 533 inline _LIBCPP_INLINE_VISIBILITY long double hypot( long double x, long double y, long double z ) {… 544 hypot(_A1 __lcpp_x, _A2 __lcpp_y, _A3 __lcpp_z) _NOEXCEPT 550 return hypot((__result_type)__lcpp_x, (__result_type)__lcpp_y, (__result_type)__lcpp_z);
|
/external/clang/lib/Headers/ |
D | __clang_cuda_math_forward_declares.h | 97 __DEVICE__ double hypot(double, double); 98 __DEVICE__ float hypot(float, float); 214 using ::hypot;
|
/external/python/cpython2/Modules/ |
D | cmathmodule.c | 139 r.imag = -copysign(log(hypot(z.real/2., z.imag/2.)) + in c_acos() 142 r.imag = copysign(log(hypot(z.real/2., z.imag/2.)) + in c_acos() 176 r.real = log(hypot(z.real/2., z.imag/2.)) + M_LN2*2.; in c_acosh() 228 r.real = copysign(log(hypot(z.real/2., z.imag/2.)) + in c_asinh() 231 r.real = -copysign(log(hypot(z.real/2., z.imag/2.)) + in c_asinh() 326 h = hypot(z.real/2., z.imag/2.); /* safe from overflow */ in c_atanh() 341 r.real = -log(sqrt(ay)/sqrt(hypot(ay, 2.))); in c_atanh() 537 r.real = log(hypot(ax/2., ay/2.)) + M_LN2; in c_log() 541 r.real = log(hypot(ldexp(ax, DBL_MANT_DIG), in c_log() 552 h = hypot(ax, ay); in c_log() [all …]
|
/external/python/cpython3/Modules/ |
D | cmathmodule.c | 231 r.imag = -copysign(log(hypot(z.real/2., z.imag/2.)) + in cmath_acos_impl() 234 r.imag = copysign(log(hypot(z.real/2., z.imag/2.)) + in cmath_acos_impl() 270 r.real = log(hypot(z.real/2., z.imag/2.)) + M_LN2*2.; in cmath_acosh_impl() 325 r.real = copysign(log(hypot(z.real/2., z.imag/2.)) + in cmath_asinh_impl() 328 r.real = -copysign(log(hypot(z.real/2., z.imag/2.)) + in cmath_asinh_impl() 427 h = hypot(z.real/2., z.imag/2.); /* safe from overflow */ in cmath_atanh_impl() 442 r.real = -log(sqrt(ay)/sqrt(hypot(ay, 2.))); in cmath_atanh_impl() 638 r.real = log(hypot(ax/2., ay/2.)) + M_LN2; in c_log() 642 r.real = log(hypot(ldexp(ax, DBL_MANT_DIG), in c_log() 653 h = hypot(ax, ay); in c_log() [all …]
|
/external/python/cpython2/PC/ |
D | pyconfig.h | 231 #define hypot _hypot macro 285 #define hypot _hypot macro
|
/external/ltp/testcases/misc/math/float/ |
D | float_exp_log.c | 37 {FUNC_HYPOT, 50, hypot, "hypot", "hypot_inp.ref", "hypot_out.ref",
|
/external/ImageMagick/MagickCore/ |
D | nt-base.h | 146 #if !defined(hypot) 147 # define hypot _hypot macro
|
/external/python/cpython2/Python/ |
D | pymath.c | 35 double hypot(double x, double y) in hypot() function
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | math_h.pass.cpp | 79 Ambiguous hypot(Ambiguous, Ambiguous){ return Ambiguous(); } in hypot() function 1046 static_assert((std::is_same<decltype(hypot((float)0, (float)0)), float>::value), ""); in test_hypot() 1047 static_assert((std::is_same<decltype(hypot((bool)0, (float)0)), double>::value), ""); in test_hypot() 1048 static_assert((std::is_same<decltype(hypot((unsigned short)0, (double)0)), double>::value), ""); in test_hypot() 1049 static_assert((std::is_same<decltype(hypot((int)0, (long double)0)), long double>::value), ""); in test_hypot() 1050 static_assert((std::is_same<decltype(hypot((float)0, (unsigned int)0)), double>::value), ""); in test_hypot() 1051 static_assert((std::is_same<decltype(hypot((double)0, (long)0)), double>::value), ""); in test_hypot() 1052 …static_assert((std::is_same<decltype(hypot((long double)0, (unsigned long)0)), long double>::value… in test_hypot() 1053 static_assert((std::is_same<decltype(hypot((int)0, (long long)0)), double>::value), ""); in test_hypot() 1054 … static_assert((std::is_same<decltype(hypot((int)0, (unsigned long long)0)), double>::value), ""); in test_hypot() [all …]
|
/external/clang/test/CodeGen/ |
D | mandel.c | 41 if (hypot(__real__ z, __imag__ z) >= ESCAPE) in mandel()
|
D | libcall-declarations.c | 100 double hypot(double, double); 282 F(hypot), F(hypotf), F(hypotl), F(ilogb), F(ilogbf),
|
/external/python/cpython3/Python/ |
D | pymath.c | 37 double hypot(double x, double y) in hypot() function
|
/external/python/cpython2/Lib/test/ |
D | test_math.py | 549 self.assertRaises(TypeError, math.hypot) 550 self.ftest('hypot(0,0)', math.hypot(0,0), 0) 551 self.ftest('hypot(3,4)', math.hypot(3,4), 5) 552 self.assertEqual(math.hypot(NAN, INF), INF) 553 self.assertEqual(math.hypot(INF, NAN), INF) 554 self.assertEqual(math.hypot(NAN, NINF), INF) 555 self.assertEqual(math.hypot(NINF, NAN), INF) 556 self.assertTrue(math.isnan(math.hypot(1.0, NAN))) 557 self.assertTrue(math.isnan(math.hypot(NAN, -2.0)))
|
/external/ltp/testcases/misc/math/float/exp_log/ |
D | genhypot.c | 54 tabR[i] = hypot(cos(Inc * i), sin(Inc * i)); in create_Result_file()
|
/external/python/cpython2/Include/ |
D | pymath.h | 26 extern double hypot(double, double);
|
/external/python/cpython3/Include/ |
D | pymath.h | 26 extern double hypot(double, double);
|
/external/python/cpython3/Lib/test/ |
D | test_math.py | 723 self.assertRaises(TypeError, math.hypot) 724 self.ftest('hypot(0,0)', math.hypot(0,0), 0) 725 self.ftest('hypot(3,4)', math.hypot(3,4), 5) 726 self.assertEqual(math.hypot(NAN, INF), INF) 727 self.assertEqual(math.hypot(INF, NAN), INF) 728 self.assertEqual(math.hypot(NAN, NINF), INF) 729 self.assertEqual(math.hypot(NINF, NAN), INF) 730 self.assertRaises(OverflowError, math.hypot, FLOAT_MAX, FLOAT_MAX) 731 self.assertTrue(math.isnan(math.hypot(1.0, NAN))) 732 self.assertTrue(math.isnan(math.hypot(NAN, -2.0)))
|
/external/fonttools/Lib/fontTools/pens/ |
D | perimeterPen.py | 15 return math.hypot(p0[0] - p1[0], p0[1] - p1[1])
|
/external/skqp/src/compute/sk/ |
D | SkDevice_Compute.cpp | 556 float const hypot = hypotf(dx,dy); in line_stroked_butt() local 559 if (hypot == 0.0f) in line_stroked_butt() 562 float const scale = radius / hypot; in line_stroked_butt()
|
/external/skia/src/compute/sk/ |
D | SkDevice_Compute.cpp | 556 float const hypot = hypotf(dx,dy); in line_stroked_butt() local 559 if (hypot == 0.0f) in line_stroked_butt() 562 float const scale = radius / hypot; in line_stroked_butt()
|
/external/python/cpython2/Lib/ |
D | collections.py | 720 def hypot(self): member in Point 723 return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot)
|
/external/eigen/test/ |
D | boostmultiprec.cpp | 110 using boost::math::hypot;
|