Lines Matching refs:xConstTickCount

2363             const TickType_t xConstTickCount = xTickCount;  in xTaskDelayUntil()  local
2370 if( xConstTickCount < *pxPreviousWakeTime ) in xTaskDelayUntil()
2377 if( ( xTimeToWake < *pxPreviousWakeTime ) && ( xTimeToWake > xConstTickCount ) ) in xTaskDelayUntil()
2391 if( ( xTimeToWake < *pxPreviousWakeTime ) || ( xTimeToWake > xConstTickCount ) ) in xTaskDelayUntil()
2410 prvAddCurrentTaskToDelayedList( xTimeToWake - xConstTickCount, pdFALSE ); in xTaskDelayUntil()
4737 const TickType_t xConstTickCount = xTickCount + ( TickType_t ) 1; in xTaskIncrementTick() local
4741 xTickCount = xConstTickCount; in xTaskIncrementTick()
4743 if( xConstTickCount == ( TickType_t ) 0U ) in xTaskIncrementTick()
4756 if( xConstTickCount >= xNextTaskUnblockTime ) in xTaskIncrementTick()
4782 if( xConstTickCount < xItemValue ) in xTaskIncrementTick()
5586 const TickType_t xConstTickCount = xTickCount; in xTaskCheckForTimeOut() local
5587 const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; in xTaskCheckForTimeOut()
5611 …if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEnt… in xTaskCheckForTimeOut()
8480 const TickType_t xConstTickCount = xTickCount; in prvAddCurrentTaskToDelayedList() local
8520 xTimeToWake = xConstTickCount + xTicksToWait; in prvAddCurrentTaskToDelayedList()
8525 if( xTimeToWake < xConstTickCount ) in prvAddCurrentTaskToDelayedList()
8558 xTimeToWake = xConstTickCount + xTicksToWait; in prvAddCurrentTaskToDelayedList()
8563 if( xTimeToWake < xConstTickCount ) in prvAddCurrentTaskToDelayedList()