Lines Matching refs:ulTotalRunTime
521 PRIVILEGED_DATA static volatile configRUN_TIME_COUNTER_TYPE ulTotalRunTime[ configNUMBER_OF_CORES ]… variable
5074 portALT_GET_RUN_TIME_COUNTER_VALUE( ulTotalRunTime[ 0 ] ); in vTaskSwitchContext()
5076 ulTotalRunTime[ 0 ] = portGET_RUN_TIME_COUNTER_VALUE(); in vTaskSwitchContext()
5086 if( ulTotalRunTime[ 0 ] > ulTaskSwitchedInTime[ 0 ] ) in vTaskSwitchContext()
5088 … pxCurrentTCB->ulRunTimeCounter += ( ulTotalRunTime[ 0 ] - ulTaskSwitchedInTime[ 0 ] ); in vTaskSwitchContext()
5095 ulTaskSwitchedInTime[ 0 ] = ulTotalRunTime[ 0 ]; in vTaskSwitchContext()
5175 portALT_GET_RUN_TIME_COUNTER_VALUE( ulTotalRunTime[ xCoreID ] ); in vTaskSwitchContext()
5177 ulTotalRunTime[ xCoreID ] = portGET_RUN_TIME_COUNTER_VALUE(); in vTaskSwitchContext()
5187 if( ulTotalRunTime[ xCoreID ] > ulTaskSwitchedInTime[ xCoreID ] ) in vTaskSwitchContext()
5189 …pxCurrentTCBs[ xCoreID ]->ulRunTimeCounter += ( ulTotalRunTime[ xCoreID ] - ulTaskSwitchedInTime[ … in vTaskSwitchContext()
5196 ulTaskSwitchedInTime[ xCoreID ] = ulTotalRunTime[ xCoreID ]; in vTaskSwitchContext()
8691 ulTotalRunTime[ xCoreID ] = 0U; in vTaskResetState()