Home
last modified time | relevance | path

Searched refs:CY_RTOS_ALIGNMENT_MASK (Results 1 – 8 of 8) sorted by relevance

/hal_infineon-latest/abstraction-rtos/source/COMPONENT_RTX/
Dcyabs_rtos_rtxv5.c145 else if ((stack != NULL) && (0 != (((uint32_t)stack) & CY_RTOS_ALIGNMENT_MASK))) in cy_rtos_thread_create()
163 uint32_t cb_mem_pad = (~osRtxThreadCbSize + 1) & CY_RTOS_ALIGNMENT_MASK; in cy_rtos_thread_create()
183 CY_ASSERT(((uint32_t)attr.cb_mem & CY_RTOS_ALIGNMENT_MASK) == 0UL); in cy_rtos_thread_create()
184 CY_ASSERT(((uint32_t)attr.stack_mem & CY_RTOS_ALIGNMENT_MASK) == 0UL); in cy_rtos_thread_create()
468 CY_ASSERT(((uint32_t)attr.cb_mem & CY_RTOS_ALIGNMENT_MASK) == 0UL); in cy_rtos_mutex_init()
577 CY_ASSERT(((uint32_t)attr.cb_mem & CY_RTOS_ALIGNMENT_MASK) == 0UL); in cy_rtos_semaphore_init()
712 CY_ASSERT(((uint32_t)attr.cb_mem & CY_RTOS_ALIGNMENT_MASK) == 0UL); in cy_rtos_event_init()
892 CY_ASSERT(((uint32_t)attr.cb_mem & CY_RTOS_ALIGNMENT_MASK) == 0UL); in cy_rtos_queue_init()
893 CY_ASSERT(((uint32_t)attr.mq_mem & CY_RTOS_ALIGNMENT_MASK) == 0UL); in cy_rtos_queue_init()
1089 CY_ASSERT(((uint32_t)attr.cb_mem & CY_RTOS_ALIGNMENT_MASK) == 0UL); in cy_rtos_timer_init()
/hal_infineon-latest/abstraction-rtos/source/COMPONENT_FREERTOS/
Dcyabs_rtos_freertos.c95 else if ((stack != NULL) && (0 != (((uint32_t)stack) & CY_RTOS_ALIGNMENT_MASK))) in cy_rtos_thread_create()
112 ? (stack_size & ~CY_RTOS_ALIGNMENT_MASK) in cy_rtos_thread_create()
124 ((stack_size & ~CY_RTOS_ALIGNMENT_MASK) / sizeof(StackType_t)); in cy_rtos_thread_create()
134 CY_ASSERT(((uint32_t)wrapper & CY_RTOS_ALIGNMENT_MASK) == 0UL); in cy_rtos_thread_create()
/hal_infineon-latest/abstraction-rtos/include/Template/
Dcyabs_rtos_impl.h59 #define CY_RTOS_ALIGNMENT_MASK 0x00000007UL /**< Checks for 8-bit alignment */ macro
/hal_infineon-latest/abstraction-rtos/include/COMPONENT_RTX/
Dcyabs_rtos_impl.h45 #define CY_RTOS_ALIGNMENT_MASK 0x00000007UL /** Mask for checking the alignment of macro
/hal_infineon-latest/abstraction-rtos/include/COMPONENT_THREADX/
Dcyabs_rtos_impl.h50 #define CY_RTOS_ALIGNMENT_MASK 0x00000007UL /**< Checks for 8-byte alignment */ macro
/hal_infineon-latest/abstraction-rtos/include/COMPONENT_FREERTOS/
Dcyabs_rtos_impl.h51 #define CY_RTOS_ALIGNMENT_MASK 0x00000007UL /**< Mask for checking the alignment of macro
/hal_infineon-latest/abstraction-rtos/source/COMPONENT_THREADX/
Dcyabs_rtos_threadx.c133 stack_size &= ~CY_RTOS_ALIGNMENT_MASK; // make stack pointer 8-byte aligned in cy_rtos_thread_create()
139 if ((stack != NULL) && (0 != (((uint32_t)stack) & CY_RTOS_ALIGNMENT_MASK))) in cy_rtos_thread_create()
/hal_infineon-latest/abstraction-rtos/
DREADME.md106 - `CY_RTOS_ALIGNMENT_MASK`