/Kernel-v10.6.2/portable/GCC/H8S2329/ |
HD | port.c | 69 uint32_t ulValue; in pxPortInitialiseStack() local 72 ulValue = ( uint32_t ) pxTopOfStack; in pxPortInitialiseStack() 73 if( ulValue & 1UL ) in pxPortInitialiseStack() 91 ulValue = ( uint32_t ) pxCode; in pxPortInitialiseStack() 94 *pxTopOfStack = ( StackType_t ) ( ulValue & 0xff ); in pxPortInitialiseStack() 96 ulValue >>= 8UL; in pxPortInitialiseStack() 97 *pxTopOfStack = ( StackType_t ) ( ulValue & 0xff ); in pxPortInitialiseStack() 99 ulValue >>= 8UL; in pxPortInitialiseStack() 100 *pxTopOfStack = ( StackType_t ) ( ulValue & 0xff ); in pxPortInitialiseStack() 121 ulValue = ( uint32_t ) pvParameters; in pxPortInitialiseStack() [all …]
|
/Kernel-v10.6.2/include/ |
HD | atomic.h | 318 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()
|
HD | task.h | 2158 uint32_t ulValue, 2161 #define xTaskNotify( xTaskToNotify, ulValue, eAction ) \ argument 2162 …xTaskGenericNotify( ( xTaskToNotify ), ( tskDEFAULT_INDEX_TO_NOTIFY ), ( ulValue ), ( eAction ), N… 2163 #define xTaskNotifyIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction ) \ argument 2164 xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), NULL ) 2190 #define xTaskNotifyAndQuery( xTaskToNotify, ulValue, eAction, pulPreviousNotifyValue ) \ argument 2191 …xTaskGenericNotify( ( xTaskToNotify ), ( tskDEFAULT_INDEX_TO_NOTIFY ), ( ulValue ), ( eAction ), (… 2192 #define xTaskNotifyAndQueryIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNo… argument 2193 …xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), ( pulPreviou… 2310 uint32_t ulValue, [all …]
|
HD | mpu_prototypes.h | 45 uint32_t ulValue; member 113 uint32_t ulValue, 173 uint32_t ulValue,
|
/Kernel-v10.6.2/portable/GCC/NiosII/ |
HD | port.c | 66 static void prvReadGp( uint32_t *ulValue ) in prvReadGp() argument 68 asm( "stw gp, (%0)" :: "r"(ulValue) ); in prvReadGp()
|
/Kernel-v10.6.2/ |
HD | tasks.c | 4919 uint32_t ulValue, in xTaskGenericNotify() argument 4945 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotify() 4953 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify() 4960 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify() 5042 uint32_t ulValue, in xTaskGenericNotifyFromISR() argument 5088 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotifyFromISR() 5096 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotifyFromISR() 5103 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotifyFromISR()
|
/Kernel-v10.6.2/portable/Common/ |
HD | mpu_wrappers.c | 960 uint32_t ulValue, in MPU_xTaskGenericNotify() argument 971 …xReturn = xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotific… in MPU_xTaskGenericNotify() 979 …xReturn = xTaskGenericNotify( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNotific… in MPU_xTaskGenericNotify()
|
HD | mpu_wrappers_v2.c | 1298 uint32_t ulValue, in MPU_xTaskGenericNotify() argument 1307 xParams.ulValue = ulValue; in MPU_xTaskGenericNotify() 1367 pxParams->ulValue, in MPU_xTaskGenericNotifyImpl() 2046 uint32_t ulValue, in MPU_xTaskGenericNotifyFromISR() argument 2063 …eturn = xTaskGenericNotifyFromISR( xInternalTaskHandle, uxIndexToNotify, ulValue, eAction, pulPrev… in MPU_xTaskGenericNotifyFromISR()
|