Home
last modified time | relevance | path

Searched refs:f1 (Results 1 – 25 of 46) sorted by relevance

12

/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/cmsis-dsp/Source/ControllerFunctions/
A Darm_sin_cos_f32.c81 float32_t f1, f2, d1, d2; /* Two nearest output values */ in arm_sin_cos_f32() local
104 f1 = sinTable_f32[indexC+0]; in arm_sin_cos_f32()
109 temp = (1.0f - fract) * f1 + fract * f2; in arm_sin_cos_f32()
112 Df = f2 - f1; // delta between the values of the functions in arm_sin_cos_f32()
119 *pCosVal = fract * temp + f1; in arm_sin_cos_f32()
122 f1 = sinTable_f32[indexS+0]; in arm_sin_cos_f32()
127 temp = (1.0f - fract) * f1 + fract * f2; in arm_sin_cos_f32()
129 Df = f2 - f1; // delta between the values of the functions in arm_sin_cos_f32()
135 *pSinVal = fract*temp + f1; in arm_sin_cos_f32()
A Darm_sin_cos_q31.c59 q31_t f1, f2, d1, d2; /* Two nearest output values */ in arm_sin_cos_q31() local
71 f1 = sinTable_q31[indexC+0]; in arm_sin_cos_q31()
77 Df = f2 - f1; // delta between the values of the functions in arm_sin_cos_q31()
87 *pCosVal = clip_q63_to_q31((temp >> 31) + (q63_t)f1); in arm_sin_cos_q31()
90 f1 = sinTable_q31[indexS+0]; in arm_sin_cos_q31()
95 Df = f2 - f1; // delta between the values of the functions in arm_sin_cos_q31()
105 *pSinVal = clip_q63_to_q31((temp >> 31) + (q63_t)f1); in arm_sin_cos_q31()
/AliOS-Things-master/components/py_engine/tests/basics/
A Difcond.py62 def f(t1, t2, f1): argument
77 if not (t1 and f1):
83 if f1 or t1:
85 if not (f1 or f2):
87 if t1 and f1 or t1 and t2:
89 if (f1 or t1) and (f2 or t2):
A Dfun_kwargs.py1 def f1(a): function
4 f1(123)
5 f1(a=123)
7 f1(b=123)
A Dfun_varargs.py2 def f1(*args): function
5 f1()
6 f1(1)
7 f1(1, 2)
A Dfun_kwvarargs.py1 def f1(**kwargs): function
4 f1()
5 f1(a=1)
A Dfun_kwonlydef.py4 def f1(*, a=1): function
6 f1()
7 f1(a=2)
A Dunboundlocal.py3 def f1(): function
18 check(f1)
A Dtry_finally2.py3 def f1(a, b): function
10 f1(2, 2) # use some stack
A Dasync_with_break.py10 async def f1(): function
18 o = f1()
A Dasync_with_return.py10 async def f1(): function
15 o = f1()
A Dclass_bind_self.py22 def f1(self, arg): member in C
38 print(c.f1(1))
/AliOS-Things-master/components/py_engine/tests/micropython/
A Dviper_types.py7 def f1(x: bool): function
11 f1(0)
12 f1(1)
13 f1([])
14 f1([1])
A Dheapalloc.py20 def f1(a): function
43 f1(i) # function call
44 f1(i * 2 + 1) # binary operation with small ints
45 f1(a=i) # keyword arguments
A Dnative_for.py5 def f1(n): function
10 f1(4)
A Dheapalloc_inst_call.py27 f1 = Foo1() variable
33 f1(1)
A Dviper_args.py13 def f1(x1: int): function
17 f1(1)
/AliOS-Things-master/components/freetype/src/tools/
A Dtest_trig.c25 FT_Fixed f1, f2; in test_cos() local
29 f1 = FT_Cos(i); in test_cos()
33 if ( abs( f2-f1 ) > THRESHOLD ) in test_cos()
37 (i >> 16), f1/65536.0, (i >> 16), d2 ); in test_cos()
51 FT_Fixed f1, f2; in test_sin() local
55 f1 = FT_Sin(i); in test_sin()
59 if ( abs( f2-f1 ) > THRESHOLD ) in test_sin()
63 (i >> 16), f1/65536.0, (i >> 16), d2 ); in test_sin()
77 FT_Fixed f1, f2; in test_tan() local
81 f1 = FT_Tan(i); in test_tan()
[all …]
/AliOS-Things-master/components/py_engine/tests/extmod/
A Dvfs_lfs_file.py111 f1 = vfs.open("test.txt", "")
113 print(f1.read())
115 f1.close()
/AliOS-Things-master/components/cplusplus/example/cpp_standard/
A Drtti_test.cpp18 double f1 = 1.0; in rtti_test() local
29 cout << "the double type name is :" << typeid(f1).name() << endl; in rtti_test()
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/test/core/
A Dexecutor_ut.cc19 static void f1() { in f1() function
32 std::function<void()> func1(f1); in TEST()
/AliOS-Things-master/components/freetype/src/raster/
A Dftraster.c1116 f1 = 0; in Line_Up()
1136 if ( f1 > 0 ) in Line_Up()
1282 Short f1; in Bezier_Up() local
1313 if ( f1 == 0 ) in Bezier_Up()
2304 Byte f1, f2; in Vertical_Sweep_Span() local
2328 target[0] |= f1; in Vertical_Sweep_Span()
2355 Short c1, f1; in Vertical_Sweep_Drop() local
2544 Byte f1; in Horizontal_Sweep_Span() local
2562 p[0] |= f1; in Horizontal_Sweep_Span()
2578 Byte f1; in Horizontal_Sweep_Drop() local
[all …]
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/ProjectSettings/
A DProjectVersion.txt1 m_EditorVersion: 2017.4.6f1
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/tests/
A Dtest_closure.js120 function f1() { function
134 a = f1(1, 2);
/AliOS-Things-master/components/py_engine/engine/tools/
A Dupip.py205 f1 = url_open(package_url)
207 f2 = uzlib.DecompIO(f1, gzdict_sz)
211 f1.close()

Completed in 28 milliseconds

12