/Kernel-v11.1.0/portable/GCC/H8S2329/ |
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() 100 *pxTopOfStack = ( StackType_t ) ( ulValue & 0xff ); in pxPortInitialiseStack() 102 ulValue >>= 8UL; in pxPortInitialiseStack() 103 *pxTopOfStack = ( StackType_t ) ( ulValue & 0xff ); in pxPortInitialiseStack() 124 ulValue = ( uint32_t ) pvParameters; in pxPortInitialiseStack() [all …]
|
/Kernel-v11.1.0/include/ |
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()
|
D | task.h | 2608 uint32_t ulValue, 2611 #define xTaskNotify( xTaskToNotify, ulValue, eAction ) \ argument 2612 …xTaskGenericNotify( ( xTaskToNotify ), ( tskDEFAULT_INDEX_TO_NOTIFY ), ( ulValue ), ( eAction ), N… 2613 #define xTaskNotifyIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction ) \ argument 2614 xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), NULL ) 2640 #define xTaskNotifyAndQuery( xTaskToNotify, ulValue, eAction, pulPreviousNotifyValue ) \ argument 2641 …xTaskGenericNotify( ( xTaskToNotify ), ( tskDEFAULT_INDEX_TO_NOTIFY ), ( ulValue ), ( eAction ), (… 2642 #define xTaskNotifyAndQueryIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNo… argument 2643 …xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), ( pulPreviou… 2760 uint32_t ulValue, [all …]
|
D | mpu_prototypes.h | 45 uint32_t ulValue; member 112 uint32_t ulValue, 175 uint32_t ulValue,
|
D | FreeRTOS.h | 2325 …#define traceENTER_xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPrevio… argument 2333 …#define traceENTER_xTaskGenericNotifyFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pu… argument
|
/Kernel-v11.1.0/portable/GCC/NiosII/ |
D | port.c | 69 static void prvReadGp( uint32_t * ulValue ) in prvReadGp() argument 71 asm ( "stw gp, (%0)" ::"r" ( ulValue ) ); in prvReadGp()
|
/Kernel-v11.1.0/ |
D | tasks.c | 7834 uint32_t ulValue, in xTaskGenericNotify() argument 7842 …traceENTER_xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotifi… in xTaskGenericNotify() 7862 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotify() 7870 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify() 7877 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify() 7954 uint32_t ulValue, in xTaskGenericNotifyFromISR() argument 7964 …traceENTER_xTaskGenericNotifyFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviou… in xTaskGenericNotifyFromISR() 8005 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotifyFromISR() 8013 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotifyFromISR() 8020 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotifyFromISR()
|
/Kernel-v11.1.0/portable/Common/ |
D | mpu_wrappers.c | 936 uint32_t ulValue, in MPU_xTaskGenericNotify() argument 947 …xReturn = xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotific… in MPU_xTaskGenericNotify() 955 …xReturn = xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotific… in MPU_xTaskGenericNotify()
|
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()
|