Home
last modified time | relevance | path

Searched refs:comp (Results 1 – 4 of 4) sorted by relevance

/TwlSDK-5.4/build/tools/makelcf/
Dtlcf.y99 static BOOL GetCompResult(const char* id, const char* comp, const char* value, BOOL* pvalid) in GetCompResult() argument
107 if ( strcmp( comp, ".EQ." ) == 0 || strcmp( comp, "==" ) == 0 ) valid = ( result == 0 ); in GetCompResult()
108 else if ( strcmp( comp, ".NE." ) == 0 || strcmp( comp, "!=" ) == 0 ) valid = ( result != 0 ); in GetCompResult()
109 else if ( strcmp( comp, ".GT." ) == 0 ) valid = ( result > 0 ); in GetCompResult()
110 else if ( strcmp( comp, ".GE." ) == 0 ) valid = ( result >= 0 ); in GetCompResult()
111 else if ( strcmp( comp, ".LT." ) == 0 ) valid = ( result < 0 ); in GetCompResult()
112 else if ( strcmp( comp, ".LE." ) == 0 ) valid = ( result <= 0 ); in GetCompResult()
118 debug_printf("id(%s)=[%s] comp=[%s] value=[%s] valid=%d\n", id, defval, comp, value, valid); in GetCompResult()
124 static BOOL CondIf(const char* id, const char* comp, const char* value) in CondIf() argument
139 if (!GetCompResult(id, comp, value, &cond_valid)) in CondIf()
/TwlSDK-5.4/build/tools/makelcf.TWL/
Dtlcf.y29 static BOOL GetCompResult(const char* id, const char* comp, const char* value, BOOL* pvalid) in GetCompResult() argument
37 if ( strcmp( comp, ".EQ." ) == 0 || strcmp( comp, "==" ) == 0 ) valid = ( result == 0 ); in GetCompResult()
38 else if ( strcmp( comp, ".NE." ) == 0 || strcmp( comp, "!=" ) == 0 ) valid = ( result != 0 ); in GetCompResult()
39 else if ( strcmp( comp, ".GT." ) == 0 ) valid = ( result > 0 ); in GetCompResult()
40 else if ( strcmp( comp, ".GE." ) == 0 ) valid = ( result >= 0 ); in GetCompResult()
41 else if ( strcmp( comp, ".LT." ) == 0 ) valid = ( result < 0 ); in GetCompResult()
42 else if ( strcmp( comp, ".LE." ) == 0 ) valid = ( result <= 0 ); in GetCompResult()
48 debug_printf("id(%s)=[%s] comp=[%s] value=[%s] valid=%d\n", id, defval, comp, value, valid); in GetCompResult()
54 static BOOL CondIf(const char* id, const char* comp, const char* value) in CondIf() argument
69 if (!GetCompResult(id, comp, value, &cond_valid)) in CondIf()
/TwlSDK-5.4/include/nitro/math/
Dqsort.h72 void MATH_QSort(void *head, u32 num, u32 width, MATHCompareFunc comp, void *stackBuf);
/TwlSDK-5.4/build/libraries/math/common/src/
Dqsort.c39 …oid* head, register u32 num, register u32 width, register MATHCompareFunc comp, void* stackBuf ) in MATH_QSort() argument
58 …mov comp_, comp // // r0-r3 and r12 are scratch registers, so they are sa… in MATH_QSort()