Home
last modified time | relevance | path

Searched refs:exp (Results 1 – 25 of 97) sorted by relevance

1234

/AliOS-Things-master/components/py_engine/engine/lib/libm/
A Dsf_ldexp.c28 float ldexpf(float value, int exp) in ldexpf() argument
30 float ldexpf(value, exp) in ldexpf()
31 float value; int exp; in ldexpf()
35 value = scalbnf(value,exp);
43 double ldexp(double value, int exp) in ldexp() argument
45 double ldexp(value, exp) in ldexp()
46 double value; int exp; in ldexp()
49 return (double) ldexpf((float) value, exp);
/AliOS-Things-master/components/py_engine/engine/lib/mbedtls_errors/
A Dtester.c40 char exp[100]; in test_code() local
41 strncpy(exp, str, buflen); in test_code()
42 exp[buflen - 1] = 0; in test_code()
43 if (strcmp(buf + 4, exp) != 0) { in test_code()
44 printf("Error: expected %s, got %s\n", exp, buf); in test_code()
/AliOS-Things-master/components/py_engine/tests/extmod/
A Duzlib_decompress.py39 exp = b"hello" variable
41 assert out == exp
42 print(exp)
48 assert out == exp
/AliOS-Things-master/components/py_engine/tests/
A Drun-tests-exp.py57 exp = None variable
60 exp = f.read() variable
65 if exp is not None:
79 if out == exp:
A Drun-tests-exp.sh30 expfile=$infile.exp
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/a7_dsp/common/
A Dmcu_audio.h10 #define NON_EXP_ALIGN(val, exp) (((val) + ((exp) - 1)) / (exp) * (exp)) argument
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/reference/
A Dlogistic.h51 result = std::exp(val); in Logistic()
53 result = 1.f / (1.f + std::exp(-val)); in Logistic()
118 result = std::exp(val); in Logistic()
120 result = 1.f / (1.f + std::exp(-val)); in Logistic()
A Dexp.h31 output_data[idx] = std::exp(input_data[idx]); in Exp()
/AliOS-Things-master/components/freetype/include/internal/
A Dftmemory.h91 #define FT_DEBUG_INNER( exp ) ( _ft_debug_file = __FILE__, \ argument
93 (exp) )
95 #define FT_ASSIGNP_INNER( p, exp ) ( _ft_debug_file = __FILE__, \ argument
97 FT_ASSIGNP( p, exp ) )
101 #define FT_DEBUG_INNER( exp ) (exp) argument
102 #define FT_ASSIGNP_INNER( p, exp ) FT_ASSIGNP( p, exp ) argument
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/multimedia/speech/inc/
A Dae_math.h59 int ipow(int base, int exp);
61 float ipowf(float base, int exp);
63 float pow_int(float base, int exp);
/AliOS-Things-master/components/SDL2/src/libm/
A De_exp.c172 double exp(double x) in exp() function
189 strong_alias(__ieee754_exp, exp)
191 libm_hidden_def(exp)
/AliOS-Things-master/components/amp-utility/python/
A Dmath2.py95 def exp(x): function
153 def ldexp(x, exp): argument
A Dcmath.py20 def exp(z): function
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/
A Dquantization_util.h154 int exp = 0; in SafeCast() local
155 std::frexp(x, &exp); in SafeCast()
162 if (exp <= std::numeric_limits<IntOut>::digits) { in SafeCast()
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/
A D__expo2.c15 return exp(x - kln2) * scale * scale; in __expo2()
A Dcosh.c31 t = exp(x); in cosh()
A Derf.c210 return exp(-z*z-0.5625)*exp((z-x)*(z+x)+R/S)/x; in erfc2()
A Dexp.c81 double exp(double x) in exp() function
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/tools/
A Dintgamma.sh70 /* The 'exp()' case must invert the above, taking a 20-bit fixed point
/AliOS-Things-master/hardware/chip/haas1000/drivers/platform/hal/
A Dplat_types.h223 #define ALIGN(val,exp) (((val) + ((exp)-1)) & ~((exp)-1)) argument
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/kernels/
A Dactivation_utils.h47 return 1.0f / (1.0f + std::exp(-a)); in ActivationValFloat()
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/bt_if_enhanced/inc/
A Dbluetooth.h119 #define list_assert(exp) (ASSERT(exp, "%s %s, %d\n", #exp, __func__, __LINE__)) argument
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dqjscalc.js96 return exp(log(a) * b);
359 exp() {
565 exp() {
594 exp() {
692 exp() {
821 exp() {
1836 exp() {
2491 function exp(a) function
2493 return a.exp();
2525 t = exp(a * I);
[all …]
/AliOS-Things-master/components/py_engine/tests/float/
A Dmath_domain_special.py16 ("expm1", math.exp, ()),
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/libtests/
A Dtarith.c755 return (png_uint_32)floor(.5 + exp(x * -LN2) * 0xffffffffU); in png_exp()
760 return (png_byte)floor(.5 + exp(log * -LN2) * 255); in png_exp8bit()
765 return (png_uint_16)floor(.5 + exp(log * -LN2) * 65535); in png_exp16bit()
837 double correct = exp(-i/65536. * log(2.)) * (65536. * 65536); in validation_gamma()
855 double correct = exp(-i/65536. * log(2.)) * 255; in validation_gamma()
873 double correct = exp(-i/65536. * log(2.)) * 65535; in validation_gamma()

Completed in 51 milliseconds

1234