Home
last modified time | relevance | path

Searched defs:a (Results 1 – 25 of 66) sorted by relevance

123

/TwlSDK-5.3.1/build/demos/os/callTrace-1/src/
Dmain.c28 int test1(int a) in test1()
36 int test2(int a) in test2()
44 int test3(int a) in test3()
53 void test4(int a) in test4()
62 void test5(int a) in test5()
/TwlSDK-5.3.1/build/demos/os/exceptionDisplay-3/src/
Dmain.c31 int test1(int a) in test1()
39 int test2(int a) in test2()
47 int test3(int a) in test3()
/TwlSDK-5.3.1/build/libraries/fx/common/src/
Dfx_vec.c39 void VEC_Add(const VecFx32 *a, const VecFx32 *b, VecFx32 *ab) in VEC_Add()
63 void VEC_Subtract(const VecFx32 *a, const VecFx32 *b, VecFx32 *ab) in VEC_Subtract()
87 void VEC_Fx16Add(const VecFx16 *a, const VecFx16 *b, VecFx16 *ab) in VEC_Fx16Add()
111 void VEC_Fx16Subtract(const VecFx16 *a, const VecFx16 *b, VecFx16 *ab) in VEC_Fx16Subtract()
134 fx32 VEC_DotProduct(const VecFx32 *a, const VecFx32 *b) in VEC_DotProduct()
153 fx32 VEC_Fx16DotProduct(const VecFx16 *a, const VecFx16 *b) in VEC_Fx16DotProduct()
177 void VEC_CrossProduct(const VecFx32 *a, const VecFx32 *b, VecFx32 *axb) in VEC_CrossProduct()
208 void VEC_Fx16CrossProduct(const VecFx16 *a, const VecFx16 *b, VecFx16 *axb) in VEC_Fx16CrossProduct()
377 void VEC_MultAdd(fx32 a, const VecFx32 *v1, const VecFx32 *v2, VecFx32 *pDest) in VEC_MultAdd()
401 void VEC_MultSubtract(fx32 a, const VecFx32 *v1, const VecFx32 *v2, VecFx32 *pDest) in VEC_MultSubtract()
Dfx_atanidx.c214 fx32 a, b; in FX_Atan2Idx() local
Dfx_atan.c219 fx32 a, b, c; in FX_Atan2() local
Dfx_cp.c310 s32 FX_DivS32(s32 a, s32 b) in FX_DivS32()
330 s32 FX_ModS32(s32 a, s32 b) in FX_ModS32()
/TwlSDK-5.3.1/build/demos/math/dgt-1/src/
Dmain.c169 #define PrintResultEq( a, b, f ) \ argument
171 #define PrintResultDigestEq( a, b, l, f ) \ argument
181 char *a[] = { in DigestTest() local
220 u8 a[] = { in DigestTest() local
262 char *a[] = { in DigestTest() local
306 u8 a[] = { in DigestTest() local
349 char *a[] = { in DigestTest() local
372 char *a[] = { in DigestTest() local
395 char *a[] = { in DigestTest() local
418 char *a[] = { in DigestTest() local
[all …]
/TwlSDK-5.3.1/build/demos/math/misc-1/src/
Dmain.c165 #define PrintResultEq( a, b, f ) \ argument
174 int a[] = { 0, 1, 0x7fffffff, -1, -0x80000000 }; in MathTest() local
194 double a[] = { 0, 1, -1, 1.0e20, 1.123e-20, -1.0e20, -1.123e-20 }; in MathTest() local
206 int a[] = { 0, 1, 0, -1, 0, 32, 31, -32, -31 }; in MathTest() local
242 double a[] = { 0, 1, 0, -1, 0, 1.0e15, 1.0e-15, 1.0e-15, 1.0e-16, -1.0e-15, -1.1e-15 }; in MathTest() local
265 int a[] = { -2, -1, 0, 1, 2, 0, 10, -2, -10, -0x80000000, 0x7fffffff }; in MathTest() local
279 int a[] = { 0, 1, 31, 32, 33, 128, -1, -31, -32, -33, 0x7fffffff, -0x80000000 }; in MathTest() local
314 u32 a[] = in MathTest() local
/TwlSDK-5.3.1/build/demos/os/callTrace-2/src/
Dmain.c45 int test1(int a) in test1()
53 int test2(int a) in test2()
61 int test3(int a) in test3()
70 void test4(int a) in test4()
79 void test5(int a) in test5()
/TwlSDK-5.3.1/include/nitro/math/
Dmath.h50 #define MATH_ABS(a) ( ( (a) < 0 ) ? (-(a)) : (a) ) argument
62 SDK_INLINE int MATH_IAbs(int a) in MATH_IAbs()
94 #define MATH_MIN(a,b) (((a) <= (b)) ? (a) : (b)) argument
107 SDK_INLINE int MATH_IMin(int a, int b) in MATH_IMin()
123 #define MATH_MAX(a,b) (((a) >= (b)) ? (a) : (b)) argument
135 SDK_INLINE int MATH_IMax(int a, int b) in MATH_IMax()
/TwlSDK-5.3.1/build/demos/cp/ThreadSafeTest/src/
Dmain.c70 u64 a; in NitroMain() local
146 u32 a, b, c; in VBlankIntr() local
177 u64 a; in proc1() local
205 u32 a, b, c; in proc2() local
/TwlSDK-5.3.1/build/demos/fx/test/src/
Dfx_append_vec.c173 static void VecSubVecD_(const VecD * a, const VecD * b, VecD * ab) in VecSubVecD_()
185 static void GetErrorVecD_(const VecD * a, const VecD * b, VecD * ab) in GetErrorVecD_()
199 static void CalcErrorBtweenVecFxAndVecD_(const VecFx32 *a, const VecD * b, VecD * vError) in CalcErrorBtweenVecFxAndVecD_()
247 static double FX_Mul_d_(const fx32 a, const fx32 b) in FX_Mul_d_()
253 static double VEC_DotProduct_d_(const VecFx32 *a, const VecFx32 *b) in VEC_DotProduct_d_()
268 static void VEC_CrossProduct_d_(const VecFx32 *a, const VecFx32 *b, VecD * axb) in VEC_CrossProduct_d_()
324 static double GetDotProductError_(const VecFx32 *a, const VecFx32 *b) in GetDotProductError_()
339 static double GetCrossProductError_(const VecFx32 *a, const VecFx32 *b) in GetCrossProductError_()
357 static double GetMagError_(const VecFx32 *a) in GetMagError_()
376 static void GetNormalizeError_(const VecFx32 *a, VecD * vError) in GetNormalizeError_()
Dmain.c80 VecFx32 a = { FX32_ONE, FX32_ONE * 2, FX32_ONE * 3 }; in test_FX_VEC() local
147 double a = sin((double)x / 4096.0); in test_FX_TRIG() local
167 double a = cos((double)x / 4096.0); in test_FX_TRIG() local
255 static BOOL equal_mtx33(const MtxFx33 *a, const MtxFx33 *b) in equal_mtx33()
265 static BOOL equal_mtx43(const MtxFx43 *a, const MtxFx43 *b) in equal_mtx43()
292 static BOOL equal_mtx44(const MtxFx44 *a, const MtxFx44 *b) in equal_mtx44()
Dfx_append_mtx.c60 double a[16]; member
81 double a[12]; member
165 MtxD43 a; in MTX_Concat43D_() local
283 MtxD44 a; in MTX_Concat44D_() local
391 static void GetDifferenceMtx_(const double *a, const double *b, double *diff, int numElement) in GetDifferenceMtx_()
/TwlSDK-5.3.1/include/nitro/fx/
Dfx_vec.h67 SDK_INLINE void VEC_Set(VecFx32 *a, fx32 x, fx32 y, fx32 z) in VEC_Set()
85 SDK_INLINE void VEC_Fx16Set(VecFx16 *a, fx16 x, fx16 y, fx16 z) in VEC_Fx16Set()
Dfx_cp.h65 #define FX_DIVISION_BY_ZERO(a, b) \ argument
/TwlSDK-5.3.1/build/demos/os/exceptionDisplay-2/src/
Dmain.c48 int a = 120; in NitroMain() local
57 int a = 240; in NitroMain() local
/TwlSDK-5.3.1/build/demos/rtc/convert-1/src/
Dmain.c171 #define PrintResultEq( a, b, f ) \ argument
173 #define PrintResultStringEq( a, b, f ) \ argument
182 s64 a[] = { in ConvTest() local
/TwlSDK-5.3.1/build/demos/os/exceptionDisplay-1/src/
Dmain.c48 int a = 1; in NitroMain() local
/TwlSDK-5.3.1/build/libraries/math/common/src/
Ddgt_md5.c49 inline static u32 CalcRound1(u32 a, u32 b, u32 c, u32 d, u32 x, u32 s, u32 t) in CalcRound1()
54 inline static u32 CalcRound2(u32 a, u32 b, u32 c, u32 d, u32 x, u32 s, u32 t) in CalcRound2()
59 inline static u32 CalcRound3(u32 a, u32 b, u32 c, u32 d, u32 x, u32 s, u32 t) in CalcRound3()
64 inline static u32 CalcRound4(u32 a, u32 b, u32 c, u32 d, u32 x, u32 s, u32 t) in CalcRound4()
161 u32 a, b, c, d; in ProcessBlock() local
/TwlSDK-5.3.1/build/demos/os/cplusplus-1/src/
Dmain.cpp26 u32 a; member in Foo
Dnew.cpp6 #define ROUND(n, a) (((u32) (n) + (a) - 1) & ~((a) - 1)) argument
/TwlSDK-5.3.1/build/demos/crypto/rc4-1/src/
Dmain.c195 #define PrintResultEq( a, b, f ) \ argument
197 #define PrintResultBinaryEq( a, b, l, f ) \ argument
/TwlSDK-5.3.1/build/demos.TWL/spi/pm-2/src/
Dmain.c114 BOOL a = PM_GetAutoExit(); in NitroMain() local
/TwlSDK-5.3.1/build/demos/crypto/rc4-3/src/
Dmain.c235 #define PrintResultEq( a, b, f ) \ argument
237 #define PrintResultBinaryEq( a, b, l, f ) \ argument

123