Lines Matching refs:pszStr2
48 const char * pszStr2 );
52 const char * pszStr2,
127 const char * pszStr2 ) in RedStrCmp() argument
131 if( ( pszStr1 == NULL ) || ( pszStr2 == NULL ) ) in RedStrCmp()
138 lResult = RedStrCmpUnchecked( pszStr1, pszStr2 ); in RedStrCmp()
155 const char * pszStr2 ) in RedStrCmpUnchecked() argument
160 while( ( pszStr1[ ulIdx ] == pszStr2[ ulIdx ] ) && ( pszStr1[ ulIdx ] != '\0' ) ) in RedStrCmpUnchecked()
171 if( ( uint8_t ) pszStr1[ ulIdx ] > ( uint8_t ) pszStr2[ ulIdx ] ) in RedStrCmpUnchecked()
175 else if( ( uint8_t ) pszStr1[ ulIdx ] < ( uint8_t ) pszStr2[ ulIdx ] ) in RedStrCmpUnchecked()
206 const char * pszStr2, in RedStrNCmp() argument
211 if( ( pszStr1 == NULL ) || ( pszStr2 == NULL ) ) in RedStrNCmp()
218 lResult = RedStrNCmpUnchecked( pszStr1, pszStr2, ulLen ); in RedStrNCmp()
238 const char * pszStr2, in RedStrNCmpUnchecked() argument
246 if( pszStr1[ ulIdx ] != pszStr2[ ulIdx ] ) in RedStrNCmpUnchecked()
254 if( ( uint8_t ) pszStr1[ ulIdx ] > ( uint8_t ) pszStr2[ ulIdx ] ) in RedStrNCmpUnchecked()