Lines Matching refs:ulIdx
158 uint32_t ulIdx = 0U; in RedStrCmpUnchecked() local
160 while( ( pszStr1[ ulIdx ] == pszStr2[ ulIdx ] ) && ( pszStr1[ ulIdx ] != '\0' ) ) in RedStrCmpUnchecked()
162 ulIdx++; 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()
242 uint32_t ulIdx; in RedStrNCmpUnchecked() local
244 for( ulIdx = 0U; ulIdx < ulLen; ulIdx++ ) in RedStrNCmpUnchecked()
246 if( pszStr1[ ulIdx ] != pszStr2[ ulIdx ] ) in RedStrNCmpUnchecked()
254 if( ( uint8_t ) pszStr1[ ulIdx ] > ( uint8_t ) pszStr2[ ulIdx ] ) in RedStrNCmpUnchecked()
264 if( ( lResult != 0 ) || ( pszStr1[ ulIdx ] == '\0' ) ) in RedStrNCmpUnchecked()
317 uint32_t ulIdx = 0U; in RedStrNCpyUnchecked() local
319 while( ( ulIdx < ulLen ) && ( pszSrc[ ulIdx ] != '\0' ) ) in RedStrNCpyUnchecked()
321 pszDst[ ulIdx ] = pszSrc[ ulIdx ]; in RedStrNCpyUnchecked()
322 ulIdx++; in RedStrNCpyUnchecked()
325 while( ulIdx < ulLen ) in RedStrNCpyUnchecked()
327 pszDst[ ulIdx ] = '\0'; in RedStrNCpyUnchecked()
328 ulIdx++; in RedStrNCpyUnchecked()