Home
last modified time | relevance | path

Searched refs:ulCause (Results 1 – 4 of 4) sorted by relevance

/Kernel-v10.6.2/portable/MPLAB/PIC32MX/
HDportmacro.h174 uint32_t ulCause; \
177 ulCause = _CP0_GET_CAUSE(); \
178 ulCause |= portSW0_BIT; \
179 _CP0_SET_CAUSE( ulCause ); \
/Kernel-v10.6.2/portable/MPLAB/PIC32MZ/
HDportmacro.h185 uint32_t ulCause; \
188 ulCause = _CP0_GET_CAUSE(); \
189 ulCause |= portSW0_BIT; \
190 _CP0_SET_CAUSE( ulCause ); \
/Kernel-v10.6.2/portable/MPLAB/PIC32MEC14xx/
HDportmacro.h223 uint32_t ulCause; \
225 ulCause = ulPortGetCP0Cause(); \
226 ulCause |= portSW0_BIT; \
227 vPortSetCP0Cause( ulCause ); \
HDport.c296 uint32_t ulCause; in vPortIncrementTick() local
303 ulCause = ulPortGetCP0Cause(); in vPortIncrementTick()
304 ulCause |= ( 1ul << 8UL ); in vPortIncrementTick()
305 vPortSetCP0Cause( ulCause ); in vPortIncrementTick()