Lines Matching refs:uint32_t
74 static portINLINE BaseType_t xSequenceGreaterThanOrEqual( uint32_t a,
75 uint32_t b );
86 static portINLINE BaseType_t xSequenceGreaterThanOrEqual( uint32_t a, in xSequenceGreaterThanOrEqual()
87 uint32_t b ) in xSequenceGreaterThanOrEqual()
113 static portINLINE uint32_t ulTimerGetAge( const TCPTimer_t * pxTimer );
122 static portINLINE uint32_t ulTimerGetAge( const TCPTimer_t * pxTimer ) in ulTimerGetAge()
147 uint32_t ulSequenceNumber, in lTCPWindowRxCheck()
148 uint32_t ulLength, in lTCPWindowRxCheck()
149 uint32_t ulSpace, in lTCPWindowRxCheck()
150 uint32_t * pulSkipCount ) in lTCPWindowRxCheck()
164 pxWindow->rx.ulCurrentSequenceNumber += ( uint32_t ) ulLength; in lTCPWindowRxCheck()
186 uint32_t ulLength, in lTCPWindowTxAdd()
206 if( ulLength > ( uint32_t ) pxSegment->lMaxLength ) in lTCPWindowTxAdd()
213 ulLength = ( uint32_t ) pxSegment->lMaxLength; in lTCPWindowTxAdd()
253 uint32_t ulTCPWindowTxGet( TCPWindow_t * pxWindow, in ulTCPWindowTxGet()
254 uint32_t ulWindowSize, in ulTCPWindowTxGet()
258 uint32_t ulLength = ( uint32_t ) pxSegment->lDataLength; in ulTCPWindowTxGet()
259 uint32_t ulMaxTime; in ulTCPWindowTxGet()
269 ulMaxTime = ( ( uint32_t ) 1U ) << pxSegment->u.bits.ucTransmitCount; in ulTCPWindowTxGet()
270 ulMaxTime *= ( uint32_t ) pxWindow->lSRTT; in ulTCPWindowTxGet()
324 uint32_t ulWindowSize );
335 uint32_t ulWindowSize ) in prvTCPWindowTxHasSpace()
365 uint32_t ulWindowSize, in xTCPWindowTxHasData()
385 …xAge = ( ( TickType_t ) 1U << pxSegment->u.bits.ucTransmitCount ) * ( ( uint32_t ) pxWindow->lSRTT… in xTCPWindowTxHasData()
420 uint32_t ulTCPWindowTxAck( TCPWindow_t * pxWindow, in ulTCPWindowTxAck()
421 uint32_t ulSequenceNumber ) in ulTCPWindowTxAck()
424 uint32_t ulDataLength = ( uint32_t ) pxSegment->lDataLength; in ulTCPWindowTxAck()