Home
last modified time | relevance | path

Searched refs:ulValue (Results 1 – 9 of 9) sorted by relevance

/Kernel-v11.1.0/portable/GCC/H8S2329/
Dport.c71 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/
Datomic.h326 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()
Dtask.h2608 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 …]
Dmpu_prototypes.h45 uint32_t ulValue; member
112 uint32_t ulValue,
175 uint32_t ulValue,
DFreeRTOS.h2325 …#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/
Dport.c69 static void prvReadGp( uint32_t * ulValue ) in prvReadGp() argument
71 asm ( "stw gp, (%0)" ::"r" ( ulValue ) ); in prvReadGp()
/Kernel-v11.1.0/
Dtasks.c7834 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/
Dmpu_wrappers.c936 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()
Dmpu_wrappers_v2.c1272 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()