Lines Matching refs:xConstTickCount
1480 const TickType_t xConstTickCount = xTickCount; in xTaskDelayUntil() local
1485 if( xConstTickCount < *pxPreviousWakeTime ) in xTaskDelayUntil()
1492 if( ( xTimeToWake < *pxPreviousWakeTime ) && ( xTimeToWake > xConstTickCount ) ) in xTaskDelayUntil()
1506 if( ( xTimeToWake < *pxPreviousWakeTime ) || ( xTimeToWake > xConstTickCount ) ) in xTaskDelayUntil()
1525 prvAddCurrentTaskToDelayedList( xPortGetCoreID(), xTimeToWake - xConstTickCount ); in xTaskDelayUntil()
3117 const TickType_t xConstTickCount = xTickCount + ( TickType_t ) 1; in xTaskIncrementTick() local
3121 xTickCount = xConstTickCount; in xTaskIncrementTick()
3123 …if( xConstTickCount == ( TickType_t ) 0U ) /*lint !e774 'if' does not always evaluate to false as … in xTaskIncrementTick()
3136 if( xConstTickCount >= xNextTaskUnblockTime ) in xTaskIncrementTick()
3159 if( xConstTickCount < xItemValue ) in xTaskIncrementTick()
3804 const TickType_t xConstTickCount = xTickCount; in xTaskCheckForTimeOut() local
3805 const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; in xTaskCheckForTimeOut()
3829 …if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEnt… in xTaskCheckForTimeOut()
5949 const TickType_t xConstTickCount = xTickCount; in prvAddCurrentTaskToDelayedList() local
5994 xTimeToWake = xConstTickCount + xTicksToWait; in prvAddCurrentTaskToDelayedList()
5999 if( xTimeToWake < xConstTickCount ) in prvAddCurrentTaskToDelayedList()
6030 xTimeToWake = xConstTickCount + xTicksToWait; in prvAddCurrentTaskToDelayedList()
6035 if( xTimeToWake < xConstTickCount ) in prvAddCurrentTaskToDelayedList()