/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/ |
A D | acosh.c | 4 #undef sqrt 5 #define sqrt sqrtl macro 18 return log1p(x-1 + sqrt((x-1)*(x-1)+2*(x-1))); in acosh() 21 return log(2*x - 1/(x+sqrt(x*x-1))); in acosh()
|
A D | asinh.c | 19 x = log(2*x + 1/(sqrt(x*x+1)+x)); in asinh() 22 x = log1p(x + x*x/(sqrt(x*x+1)+1)); in asinh()
|
A D | acos.c | 89 s = sqrt(z); in acos() 95 s = sqrt(z); in acos()
|
A D | thumb_vfp_sqrt.c | 3 double sqrt(double x) { in sqrt() function
|
A D | asin.c | 92 s = sqrt(z); in asin()
|
A D | sqrt.c | 83 double sqrt(double x) in sqrt() function
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/tests/ |
A D | test_bignum.js | 88 test_eq(Math.sqrt(4), 2n); 139 assert(BigInt.sqrt(0xffffffc000000000000000n) === 17592185913343n); 166 test_eq(Math.sqrt(9), 3l); 173 a = BigFloat.sqrt(2l, e); 178 b = BigFloatEnv.setPrec(BigFloat.sqrt.bind(null, 2), 128); 249 test_eq(Math.sqrt(4), 2m); 276 assert(BigDecimal.sqrt(2m, 279 assert(BigDecimal.sqrt(101m, 282 assert(BigDecimal.sqrt(0.002m,
|
/AliOS-Things-master/components/SDL2/src/libm/ |
A D | e_sqrt.c | 187 double sqrt(double x) in sqrt() function 197 strong_alias(__ieee754_sqrt, sqrt) 199 libm_hidden_def(sqrt)
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/ |
A D | common.h | 545 FixedPoint0, 1805811301, std::sqrt(std::sqrt(0.5))); in log_x_for_x_greater_than_or_equal_to_1_impl() 547 FixedPoint0, 1518500250, std::sqrt(0.5)); in log_x_for_x_greater_than_or_equal_to_1_impl() 552 FixedPoint0, 117049297, 11.0 / 240.0 * std::sqrt(std::sqrt(2.0))); in log_x_for_x_greater_than_or_equal_to_1_impl() 554 FixedPoint0, 127690142, 1.0 / 20.0 * std::sqrt(std::sqrt(2.0))); in log_x_for_x_greater_than_or_equal_to_1_impl() 557 2.0 / std::sqrt(std::sqrt(2.0)) - std::sqrt(std::sqrt(2.0))); in log_x_for_x_greater_than_or_equal_to_1_impl() 559 FixedPoint0, 638450708, 1.0 / 4.0 * std::sqrt(std::sqrt(2.0))); in log_x_for_x_greater_than_or_equal_to_1_impl() 691 GEMMLOWP_CHECKED_FIXEDPOINT_CONSTANT(F0, 1518500250, std::sqrt(2.) / 2.); in GetInvSqrtQuantizedMultiplierExp()
|
/AliOS-Things-master/components/py_engine/tests/perf_bench/ |
A D | bm_float.py | 6 from math import sin, cos, sqrt 24 norm = sqrt(x * x + y * y + z * z)
|
/AliOS-Things-master/components/amp-utility/python/ |
A D | cmath.py | 69 def sqrt(z): function
|
A D | math2.py | 214 def sqrt(x): function
|
/AliOS-Things-master/components/py_engine/engine/lib/libm/ |
A D | acoshf.c | 14 #define sqrtf sqrt
|
/AliOS-Things-master/components/freetype/src/tools/ |
A D | cordic.py | 26 shrink /= math.sqrt( 1 + x*x )
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/kernels/ |
A D | elementwise.cc | 98 return EvalNumeric(context, node, std::sqrt); in SqrtEval() 102 return EvalNumeric(context, node, [](float f) { return 1.f / std::sqrt(f); }); in RsqrtEval()
|
/AliOS-Things-master/components/py_engine/tests/float/ |
A D | cmath_fun.py | 38 ("sqrt", sqrt, test_values),
|
A D | math_domain.py | 18 ("sqrt", math.sqrt, (-1, 0)),
|
A D | math_fun.py | 23 ("sqrt", sqrt, test_values),
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | objcomplex.c | 129 … return mp_obj_new_float(MICROPY_FLOAT_C_FUN(sqrt)(o->real * o->real + o->imag * o->imag)); in complex_unary_op() 236 mp_float_t abs1 = MICROPY_FLOAT_C_FUN(sqrt)(lhs_real * lhs_real + lhs_imag * lhs_imag); in mp_obj_complex_binary_op()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/examples/ |
A D | pi_bigdecimal.js | 47 G = (CHUD_C / 12m) * BigDecimal.sqrt(CHUD_C,
|
A D | pi_bigfloat.js | 44 G = BigFloat((CHUD_C / 12n)) * BigFloat.sqrt(BigFloat(CHUD_C));
|
/AliOS-Things-master/components/uvoice/tools/ |
A D | gen_voice.py | 26 vol = max_volume * math.sqrt(1 - tmp)
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/reference/ |
A D | l2normalization.h | 45 float l2_norm = std::sqrt(squared_l2_norm);
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | IMG_svg.c | 49 #define sqrt SDL_sqrt macro
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/ |
A D | raw2tiff.c | 411 w = (uint32) sqrt(imagesize / longt); in guessSize() 419 w < sqrt(imagesize * longt); in guessSize() 568 K = (K - M1 * M2 * n_elem) / sqrt(D1 * D2); in correlation()
|