Home
last modified time | relevance | path

Searched refs:sqrt (Results 1 – 25 of 56) sorted by relevance

123

/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/
A Dacosh.c4 #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 Dasinh.c19 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 Dacos.c89 s = sqrt(z); in acos()
95 s = sqrt(z); in acos()
A Dthumb_vfp_sqrt.c3 double sqrt(double x) { in sqrt() function
A Dasin.c92 s = sqrt(z); in asin()
A Dsqrt.c83 double sqrt(double x) in sqrt() function
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/tests/
A Dtest_bignum.js88 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 De_sqrt.c187 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 Dcommon.h545 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 Dbm_float.py6 from math import sin, cos, sqrt
24 norm = sqrt(x * x + y * y + z * z)
/AliOS-Things-master/components/amp-utility/python/
A Dcmath.py69 def sqrt(z): function
A Dmath2.py214 def sqrt(x): function
/AliOS-Things-master/components/py_engine/engine/lib/libm/
A Dacoshf.c14 #define sqrtf sqrt
/AliOS-Things-master/components/freetype/src/tools/
A Dcordic.py26 shrink /= math.sqrt( 1 + x*x )
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/kernels/
A Delementwise.cc98 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 Dcmath_fun.py38 ("sqrt", sqrt, test_values),
A Dmath_domain.py18 ("sqrt", math.sqrt, (-1, 0)),
A Dmath_fun.py23 ("sqrt", sqrt, test_values),
/AliOS-Things-master/components/py_engine/engine/py/
A Dobjcomplex.c129 … 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 Dpi_bigdecimal.js47 G = (CHUD_C / 12m) * BigDecimal.sqrt(CHUD_C,
A Dpi_bigfloat.js44 G = BigFloat((CHUD_C / 12n)) * BigFloat.sqrt(BigFloat(CHUD_C));
/AliOS-Things-master/components/uvoice/tools/
A Dgen_voice.py26 vol = max_volume * math.sqrt(1 - tmp)
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/reference/
A Dl2normalization.h45 float l2_norm = std::sqrt(squared_l2_norm);
/AliOS-Things-master/components/SDL2/src/image/
A DIMG_svg.c49 #define sqrt SDL_sqrt macro
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/
A Draw2tiff.c411 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()

Completed in 41 milliseconds

123