Home
last modified time | relevance | path

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

/Kernel-v11.0.1/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.0.1/include/
Datomic.h318 uint32_t ulValue ) in Atomic_OR_u32() argument
325 *pulDestination |= ulValue; in Atomic_OR_u32()
345 uint32_t ulValue ) in Atomic_AND_u32() argument
352 *pulDestination &= ulValue; in Atomic_AND_u32()
372 uint32_t ulValue ) in Atomic_NAND_u32() argument
379 *pulDestination = ~( ulCurrent & ulValue ); in Atomic_NAND_u32()
399 uint32_t ulValue ) in Atomic_XOR_u32() argument
406 *pulDestination ^= ulValue; in Atomic_XOR_u32()
Dtask.h2607 uint32_t ulValue,
2610 #define xTaskNotify( xTaskToNotify, ulValue, eAction ) \ argument
2611 …xTaskGenericNotify( ( xTaskToNotify ), ( tskDEFAULT_INDEX_TO_NOTIFY ), ( ulValue ), ( eAction ), N…
2612 #define xTaskNotifyIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction ) \ argument
2613 xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), NULL )
2639 #define xTaskNotifyAndQuery( xTaskToNotify, ulValue, eAction, pulPreviousNotifyValue ) \ argument
2640 …xTaskGenericNotify( ( xTaskToNotify ), ( tskDEFAULT_INDEX_TO_NOTIFY ), ( ulValue ), ( eAction ), (…
2641 #define xTaskNotifyAndQueryIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNo… argument
2642 …xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), ( pulPreviou…
2759 uint32_t ulValue,
[all …]
Dmpu_prototypes.h45 uint32_t ulValue; member
112 uint32_t ulValue,
175 uint32_t ulValue,
DFreeRTOS.h2273 …#define traceENTER_xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPrevio… argument
2281 …#define traceENTER_xTaskGenericNotifyFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pu… argument
/Kernel-v11.0.1/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.0.1/
Dtasks.c7901 uint32_t ulValue, in xTaskGenericNotify() argument
7909 …traceENTER_xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotifi… in xTaskGenericNotify()
7929 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotify()
7937 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify()
7944 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify()
8021 uint32_t ulValue, in xTaskGenericNotifyFromISR() argument
8031 …traceENTER_xTaskGenericNotifyFromISR( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviou… in xTaskGenericNotifyFromISR()
8069 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotifyFromISR()
8077 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotifyFromISR()
8084 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotifyFromISR()
/Kernel-v11.0.1/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.c1267 uint32_t ulValue, in MPU_xTaskGenericNotify() argument
1276 xParams.ulValue = ulValue; in MPU_xTaskGenericNotify()
1336 pxParams->ulValue, in MPU_xTaskGenericNotifyImpl()
2110 uint32_t ulValue, in MPU_xTaskGenericNotifyFromISR() argument
2127 …eturn = xTaskGenericNotifyFromISR( xInternalTaskHandle, uxIndexToNotify, ulValue, eAction, pulPrev… in MPU_xTaskGenericNotifyFromISR()