/AliOS-Things-master/components/py_engine/engine/lib/libm/ |
A D | sf_ldexp.c | 28 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 D | tester.c | 40 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 D | uzlib_decompress.py | 39 exp = b"hello" variable 41 assert out == exp 42 print(exp) 48 assert out == exp
|
/AliOS-Things-master/components/py_engine/tests/ |
A D | run-tests-exp.py | 57 exp = None variable 60 exp = f.read() variable 65 if exp is not None: 79 if out == exp:
|
A D | run-tests-exp.sh | 30 expfile=$infile.exp
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/a7_dsp/common/ |
A D | mcu_audio.h | 10 #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 D | logistic.h | 51 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 D | exp.h | 31 output_data[idx] = std::exp(input_data[idx]); in Exp()
|
/AliOS-Things-master/components/freetype/include/internal/ |
A D | ftmemory.h | 91 #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 D | ae_math.h | 59 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 D | e_exp.c | 172 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 D | math2.py | 95 def exp(x): function 153 def ldexp(x, exp): argument
|
A D | cmath.py | 20 def exp(z): function
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/ |
A D | quantization_util.h | 154 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.c | 15 return exp(x - kln2) * scale * scale; in __expo2()
|
A D | cosh.c | 31 t = exp(x); in cosh()
|
A D | erf.c | 210 return exp(-z*z-0.5625)*exp((z-x)*(z+x)+R/S)/x; in erfc2()
|
A D | exp.c | 81 double exp(double x) in exp() function
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/tools/ |
A D | intgamma.sh | 70 /* The 'exp()' case must invert the above, taking a 20-bit fixed point
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/platform/hal/ |
A D | plat_types.h | 223 #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 D | activation_utils.h | 47 return 1.0f / (1.0f + std::exp(-a)); in ActivationValFloat()
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/bt_if_enhanced/inc/ |
A D | bluetooth.h | 119 #define list_assert(exp) (ASSERT(exp, "%s %s, %d\n", #exp, __func__, __LINE__)) argument
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | qjscalc.js | 96 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 D | math_domain_special.py | 16 ("expm1", math.exp, ()),
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/libtests/ |
A D | tarith.c | 755 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()
|