/FreeRTOS-Kernel/portable/GCC/H8S2329/ |
A D | port.c | 71 uint32_t ulValue; in pxPortInitialiseStack() local 74 ulValue = ( uint32_t ) pxTopOfStack; in pxPortInitialiseStack() 76 if( ulValue & 1UL ) in pxPortInitialiseStack() 94 ulValue = ( uint32_t ) pxCode; in pxPortInitialiseStack() 97 *pxTopOfStack = ( StackType_t ) ( ulValue & 0xff ); in pxPortInitialiseStack() 99 ulValue >>= 8UL; in pxPortInitialiseStack() 102 ulValue >>= 8UL; in pxPortInitialiseStack() 124 ulValue = ( uint32_t ) pvParameters; in pxPortInitialiseStack() 129 ulValue >>= 8UL; in pxPortInitialiseStack() 132 ulValue >>= 8UL; in pxPortInitialiseStack() [all …]
|
/FreeRTOS-Kernel/include/ |
A D | atomic.h | 326 uint32_t ulValue ) in Atomic_OR_u32() argument 333 *pulDestination |= ulValue; in Atomic_OR_u32() 353 uint32_t ulValue ) in Atomic_AND_u32() argument 360 *pulDestination &= ulValue; in Atomic_AND_u32() 380 uint32_t ulValue ) in Atomic_NAND_u32() argument 387 *pulDestination = ~( ulCurrent & ulValue ); in Atomic_NAND_u32() 407 uint32_t ulValue ) in Atomic_XOR_u32() argument 414 *pulDestination ^= ulValue; in Atomic_XOR_u32()
|
A D | task.h | 2627 uint32_t ulValue, 2630 #define xTaskNotify( xTaskToNotify, ulValue, eAction ) \ argument 2631 …xTaskGenericNotify( ( xTaskToNotify ), ( tskDEFAULT_INDEX_TO_NOTIFY ), ( ulValue ), ( eAction ), N… 2632 #define xTaskNotifyIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction ) \ argument 2633 xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), NULL ) 2659 #define xTaskNotifyAndQuery( xTaskToNotify, ulValue, eAction, pulPreviousNotifyValue ) \ argument 2661 #define xTaskNotifyAndQueryIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNo… argument 2662 …xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), ( pulPreviou… 2779 uint32_t ulValue, 2783 #define xTaskNotifyFromISR( xTaskToNotify, ulValue, eAction, pxHigherPriorityTaskWoken ) \ argument [all …]
|
A D | mpu_prototypes.h | 45 uint32_t ulValue; member 112 uint32_t ulValue, 209 uint32_t ulValue,
|
A D | FreeRTOS.h | 2350 …#define traceENTER_xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPrevio… argument 2358 …#define traceENTER_xTaskGenericNotifyFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pu… argument
|
/FreeRTOS-Kernel/portable/GCC/NiosII/ |
A D | port.c | 69 static void prvReadGp( uint32_t * ulValue ) in prvReadGp() argument 71 asm ( "stw gp, (%0)" ::"r" ( ulValue ) ); in prvReadGp()
|
/FreeRTOS-Kernel/ |
A D | tasks.c | 7909 uint32_t ulValue, in xTaskGenericNotify() argument 7917 …traceENTER_xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotifi… in xTaskGenericNotify() 7937 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotify() 7945 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify() 7952 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify() 8029 uint32_t ulValue, in xTaskGenericNotifyFromISR() argument 8039 …traceENTER_xTaskGenericNotifyFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviou… in xTaskGenericNotifyFromISR() 8080 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotifyFromISR() 8088 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotifyFromISR() 8095 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotifyFromISR()
|
/FreeRTOS-Kernel/portable/Common/ |
A D | mpu_wrappers.c | 938 uint32_t ulValue, in MPU_xTaskGenericNotify() argument 949 …xReturn = xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotific… in MPU_xTaskGenericNotify() 957 …xReturn = xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotific… in MPU_xTaskGenericNotify()
|
A D | mpu_wrappers_v2.c | 1272 uint32_t ulValue, in MPU_xTaskGenericNotify() argument 1281 xParams.ulValue = ulValue; in MPU_xTaskGenericNotify() 1341 pxParams->ulValue, in MPU_xTaskGenericNotifyImpl() 2115 uint32_t ulValue, in MPU_xTaskGenericNotifyFromISR() argument 2132 …eturn = xTaskGenericNotifyFromISR( xInternalTaskHandle, uxIndexToNotify, ulValue, eAction, pulPrev… in MPU_xTaskGenericNotifyFromISR()
|