Searched refs:ulIdx (Results 1 – 12 of 12) sorted by relevance
58 ulIdx++; in RedAtoI()62 ulIdx++; in RedAtoI()75 ulIdx++; in RedAtoI()188 ulIdx++; in RedHtoULL()237 ulIdx++; in RedNtoUL()242 …if( ( pszNum[ ulIdx ] == '0' ) && ( ( pszNum[ ulIdx + 1U ] == 'x' ) || ( pszNum[ ulIdx + 1U ] == '… in RedNtoUL()244 ulIdx += 2U; in RedNtoUL()263 ulIdx++; in RedNtoUL()327 ulIdx++; in RedNtoULL()332 …if( ( pszNum[ ulIdx ] == '0' ) && ( ( pszNum[ ulIdx + 1U ] == 'x' ) || ( pszNum[ ulIdx + 1U ] == '… in RedNtoULL()[all …]
767 uint32_t ulIdx = 0U; in ParseFormatSpecifier() local777 ulIdx++; in ParseFormatSpecifier()786 ulIdx++; in ParseFormatSpecifier()791 ulIdx++; in ParseFormatSpecifier()797 ulIdx++; in ParseFormatSpecifier()807 ulIdx++; in ParseFormatSpecifier()899 ulIdx++; in ParseFormatType()922 ulIdx++; in ParseFormatType()1298 ulIdx++; in FinishToA()1309 ulIdx++; in FinishToA()[all …]
105 uint32_t ulIdx; in RedMemCpyUnchecked() local107 for( ulIdx = 0U; ulIdx < ulLen; ulIdx++ ) in RedMemCpyUnchecked()109 pbDest[ ulIdx ] = pbSrc[ ulIdx ]; in RedMemCpyUnchecked()155 uint32_t ulIdx; in RedMemMoveUnchecked() local168 for( ulIdx = 0U; ulIdx < ulLen; ulIdx++ ) in RedMemMoveUnchecked()170 pbDest[ ulIdx ] = pbSrc[ ulIdx ]; in RedMemMoveUnchecked()180 pbDest[ ulIdx ] = pbSrc[ ulIdx ]; in RedMemMoveUnchecked()225 for( ulIdx = 0U; ulIdx < ulLen; ulIdx++ ) in RedMemSetUnchecked()286 while( ( ulIdx < ulLen ) && ( pbMem1[ ulIdx ] == pbMem2[ ulIdx ] ) ) in RedMemCmpUnchecked()288 ulIdx++; in RedMemCmpUnchecked()[all …]
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() local244 for( ulIdx = 0U; ulIdx < ulLen; ulIdx++ ) in RedStrNCmpUnchecked()246 if( pszStr1[ ulIdx ] != pszStr2[ ulIdx ] ) in RedStrNCmpUnchecked()319 while( ( ulIdx < ulLen ) && ( pszSrc[ ulIdx ] != '\0' ) ) in RedStrNCpyUnchecked()321 pszDst[ ulIdx ] = pszSrc[ ulIdx ]; in RedStrNCpyUnchecked()322 ulIdx++; in RedStrNCpyUnchecked()[all …]
84 uint32_t ulIdx; in RedCrc32Update() local88 for( ulIdx = 0U; ulIdx < ulLength; ++ulIdx ) in RedCrc32Update()171 uint32_t ulIdx; in RedCrc32Update() local175 for( ulIdx = 0U; ulIdx < ulLength; ++ulIdx ) in RedCrc32Update()491 uint32_t ulIdx = 0U; in RedCrc32Update() local508 while( ( ulIdx < ulLength ) && !IS_ALIGNED_PTR( &pbBuffer[ ulIdx ] ) ) in RedCrc32Update()512 ulIdx++; in RedCrc32Update()517 ulSliceLen = ( ( ( ulLength - ulIdx ) >> 3U ) << 3U ) + ulIdx; in RedCrc32Update()526 ulCrc32 ^= pbBuffer[ ulIdx ] | ( ( uint32_t ) pbBuffer[ ulIdx + 1U ] << 8U ) | in RedCrc32Update()542 ulIdx += 8U; in RedCrc32Update()[all …]
44 uint32_t ulIdx = 0U; in RedNameLen() local52 while( ( pszName[ ulIdx ] != '\0' ) && ( pszName[ ulIdx ] != REDCONF_PATH_SEPARATOR ) ) in RedNameLen()54 ulIdx++; in RedNameLen()58 return ulIdx; in RedNameLen()
52 uint32_t ulIdx = 0U; in RedOsOutputString() local54 while( pszString[ ulIdx ] != '\0' ) in RedOsOutputString()56 OUTPUT_CHARACTER( pszString[ ulIdx ] ); in RedOsOutputString()60 if( pszString[ ulIdx ] == '\n' ) in RedOsOutputString()65 ulIdx++; in RedOsOutputString()
343 uint32_t ulIdx = 0U; in RedDirEntryLookup() local416 ulFreeIdx = ulIdx; in RedDirEntryLookup()448 ulIdx = ulFreeIdx; in RedDirEntryLookup()455 *pulEntryIdx = ulIdx; in RedDirEntryLookup()510 uint32_t ulIdx = *pulIdx; in RedDirEntryRead() local545 ulIdx++; in RedDirEntryRead()556 ulIdx += DIRENTS_PER_BLOCK - ( ulIdx % DIRENTS_PER_BLOCK ); in RedDirEntryRead()886 ( ulIdx >= DIRENTS_MAX ) || in DirEntryWrite()934 REDASSERT( ulIdx < DIRENTS_MAX ); in DirEntryIndexToOffset()952 uint32_t ulIdx; in DirOffsetToEntryIndex() local[all …]
1022 uint32_t ulIdx; in BufferEndianSwapInode() local1046 for( ulIdx = 0; ulIdx < INODE_ENTRIES; ulIdx++ ) in BufferEndianSwapInode()1048 pInode->aulEntries[ ulIdx ] = RedRev32( pInode->aulEntries[ ulIdx ] ); in BufferEndianSwapInode()1068 uint32_t ulIdx; in BufferEndianSwapIndir() local1072 for( ulIdx = 0; ulIdx < INDIR_ENTRIES; ulIdx++ ) in BufferEndianSwapIndir()1074 pIndir->aulEntries[ ulIdx ] = RedRev32( pIndir->aulEntries[ ulIdx ] ); in BufferEndianSwapIndir()
383 uint32_t ulIdx = 0U; in IsRootDir() local390 while( pszLocalPath[ ulIdx ] == REDCONF_PATH_SEPARATOR ) in IsRootDir()392 ulIdx++; in IsRootDir()395 fRet = ( ulIdx > 0U ) && ( pszLocalPath[ ulIdx ] == '\0' ); in IsRootDir()432 uint32_t ulIdx = 0U; in PathHasMoreNames() local434 while( pszPathIdx[ ulIdx ] == REDCONF_PATH_SEPARATOR ) in PathHasMoreNames()436 ulIdx++; in PathHasMoreNames()439 fRet = pszPathIdx[ ulIdx ] != '\0'; in PathHasMoreNames()
2198 uint32_t ulIdx; in red_errnoptr() local2207 for( ulIdx = 0U; ulIdx < REDCONF_TASK_COUNT; ulIdx++ ) in red_errnoptr()2217 if( ulIdx == REDCONF_TASK_COUNT ) in red_errnoptr()2226 ret = TaskRegister( &ulIdx ); in red_errnoptr()2246 piErrno = &gaTask[ ulIdx ].iErrno; in red_errnoptr()3025 uint32_t ulIdx; in TaskRegister() local3033 for( ulIdx = 0U; ulIdx < REDCONF_TASK_COUNT; ulIdx++ ) in TaskRegister()3042 ulFirstFreeIdx = ulIdx; in TaskRegister()3046 if( ulIdx == REDCONF_TASK_COUNT ) in TaskRegister()3060 ulIdx = ulFirstFreeIdx; in TaskRegister()[all …]
176 uint32_t ulIdx; in red_chdir() local186 for( ulIdx = 0U; szLocalCwd[ ulIdx ] != '\0'; ulIdx++ ) in red_chdir()188 if( szLocalCwd[ ulIdx ] == '/' ) in red_chdir()190 ulLastSlashIdx = ulIdx; in red_chdir()221 ulIdx = strlen( szLocalCwd ); in red_chdir()223 if( ( ulIdx + 1U + strlen( pszPath ) ) >= sizeof( szLocalCwd ) ) in red_chdir()231 szLocalCwd[ ulIdx ] = '/'; in red_chdir()232 ulIdx++; in red_chdir()235 strcpy( &szLocalCwd[ ulIdx ], pszPath ); in red_chdir()
Completed in 42 milliseconds