Home
last modified time | relevance | path

Searched refs:uxSource (Results 1 – 2 of 2) sorted by relevance

/FreeRTOS-Plus-TCP-v4.0.0/tools/tcp_utilities/
Dtcp_mem_stats.c131 size_t uxSource = 0, uxTarget = 0; in pxRemoveAllocation() local
138 for( ; uxSource < uxAllocationCount; uxSource++ ) in pxRemoveAllocation()
140 if( xAllocations[ uxSource ].pxObject == pxObject ) in pxRemoveAllocation()
143 … ( void ) memcpy( &( xAllocation ), &( xAllocations[ uxSource ] ), sizeof xAllocation ); in pxRemoveAllocation()
148 xAllocations[ uxTarget ] = xAllocations[ uxSource ]; in pxRemoveAllocation()
/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_Sockets.c3113 socklen_t uxSource = ( socklen_t ) sockDIGIT_COUNT - ( socklen_t ) 1U; in FreeRTOS_inet_ntoa() local
3117 pucDigits[ uxSource ] = ucValue % ( uint8_t ) 10U; in FreeRTOS_inet_ntoa()
3120 if( uxSource == 1U ) in FreeRTOS_inet_ntoa()
3125 uxSource--; in FreeRTOS_inet_ntoa()
3131 … for( uxSource = 0; uxSource < ( ( socklen_t ) sockDIGIT_COUNT - ( socklen_t ) 1U ); uxSource++ ) in FreeRTOS_inet_ntoa()
3133 if( pucDigits[ uxSource ] != 0U ) in FreeRTOS_inet_ntoa()
3139 for( ; uxSource < ( socklen_t ) sockDIGIT_COUNT; uxSource++ ) in FreeRTOS_inet_ntoa()
3141 pcBuffer[ uxIndex ] = ( char ) ( pucDigits[ uxSource ] + ( char ) '0' ); in FreeRTOS_inet_ntoa()