Home
last modified time | relevance | path

Searched refs:ulIdx (Results 1 – 12 of 12) sorted by relevance

/FreeRTOS-Plus/Source/Reliance-Edge/tests/util/
A Datoi.c58 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 …]
A Dprintf.c767 uint32_t ulIdx = 0U; in ParseFormatSpecifier() local
777 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 …]
/FreeRTOS-Plus/Source/Reliance-Edge/util/
A Dmemory.c105 uint32_t ulIdx; in RedMemCpyUnchecked() local
107 for( ulIdx = 0U; ulIdx < ulLen; ulIdx++ ) in RedMemCpyUnchecked()
109 pbDest[ ulIdx ] = pbSrc[ ulIdx ]; in RedMemCpyUnchecked()
155 uint32_t ulIdx; in RedMemMoveUnchecked() local
168 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 …]
A Dstring.c160 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()
319 while( ( ulIdx < ulLen ) && ( pszSrc[ ulIdx ] != '\0' ) ) in RedStrNCpyUnchecked()
321 pszDst[ ulIdx ] = pszSrc[ ulIdx ]; in RedStrNCpyUnchecked()
322 ulIdx++; in RedStrNCpyUnchecked()
[all …]
A Dcrc.c84 uint32_t ulIdx; in RedCrc32Update() local
88 for( ulIdx = 0U; ulIdx < ulLength; ++ulIdx ) in RedCrc32Update()
171 uint32_t ulIdx; in RedCrc32Update() local
175 for( ulIdx = 0U; ulIdx < ulLength; ++ulIdx ) in RedCrc32Update()
491 uint32_t ulIdx = 0U; in RedCrc32Update() local
508 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 …]
A Dnamelen.c44 uint32_t ulIdx = 0U; in RedNameLen() local
52 while( ( pszName[ ulIdx ] != '\0' ) && ( pszName[ ulIdx ] != REDCONF_PATH_SEPARATOR ) ) in RedNameLen()
54 ulIdx++; in RedNameLen()
58 return ulIdx; in RedNameLen()
/FreeRTOS-Plus/Source/Reliance-Edge/os/freertos/services/
A Dosoutput.c52 uint32_t ulIdx = 0U; in RedOsOutputString() local
54 while( pszString[ ulIdx ] != '\0' ) in RedOsOutputString()
56 OUTPUT_CHARACTER( pszString[ ulIdx ] ); in RedOsOutputString()
60 if( pszString[ ulIdx ] == '\n' ) in RedOsOutputString()
65 ulIdx++; in RedOsOutputString()
/FreeRTOS-Plus/Source/Reliance-Edge/core/driver/
A Ddir.c343 uint32_t ulIdx = 0U; in RedDirEntryLookup() local
416 ulFreeIdx = ulIdx; in RedDirEntryLookup()
448 ulIdx = ulFreeIdx; in RedDirEntryLookup()
455 *pulEntryIdx = ulIdx; in RedDirEntryLookup()
510 uint32_t ulIdx = *pulIdx; in RedDirEntryRead() local
545 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 …]
A Dbuffer.c1022 uint32_t ulIdx; in BufferEndianSwapInode() local
1046 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() local
1072 for( ulIdx = 0; ulIdx < INDIR_ENTRIES; ulIdx++ ) in BufferEndianSwapIndir()
1074 pIndir->aulEntries[ ulIdx ] = RedRev32( pIndir->aulEntries[ ulIdx ] ); in BufferEndianSwapIndir()
/FreeRTOS-Plus/Source/Reliance-Edge/posix/
A Dpath.c383 uint32_t ulIdx = 0U; in IsRootDir() local
390 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() local
434 while( pszPathIdx[ ulIdx ] == REDCONF_PATH_SEPARATOR ) in PathHasMoreNames()
436 ulIdx++; in PathHasMoreNames()
439 fRet = pszPathIdx[ ulIdx ] != '\0'; in PathHasMoreNames()
A Dposix.c2198 uint32_t ulIdx; in red_errnoptr() local
2207 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() local
3033 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 …]
/FreeRTOS-Plus/Source/Reliance-Edge/tests/posix/
A Dfsstress.c176 uint32_t ulIdx; in red_chdir() local
186 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 51 milliseconds