Home
last modified time | relevance | path

Searched refs:stacksz (Results 1 – 3 of 3) sorted by relevance

/Zephyr-Core-2.7.6/lib/os/
Drb.c128 static void rotate(struct rbnode **stack, int stacksz) in rotate() argument
130 CHECK(stacksz >= 2); in rotate()
132 struct rbnode *parent = stack[stacksz - 2]; in rotate()
133 struct rbnode *child = stack[stacksz - 1]; in rotate()
138 if (stacksz >= 3) { in rotate()
139 struct rbnode *grandparent = stack[stacksz - 3]; in rotate()
147 stack[stacksz - 2] = child; in rotate()
148 stack[stacksz - 1] = parent; in rotate()
155 static void fix_extra_red(struct rbnode **stack, int stacksz) in fix_extra_red() argument
157 while (stacksz > 1) { in fix_extra_red()
[all …]
/Zephyr-Core-2.7.6/subsys/portability/cmsis_rtos_v1/
Dcmsis_thread.c62 uint32_t stacksz; in osThreadCreate() local
96 stacksz = thread_def->stacksize; in osThreadCreate()
97 if (stacksz == 0U) { in osThreadCreate()
98 stacksz = CONFIG_CMSIS_THREAD_MAX_STACK_SIZE; in osThreadCreate()
111 stk_ptr[instance], stacksz, in osThreadCreate()
/Zephyr-Core-2.7.6/include/portability/
Dcmsis_os.h286 #define osThreadDef(name, priority, instances, stacksz) \ argument
289 #define osThreadDef(name, priority, instances, stacksz) \ argument
296 { (name), (priority), (instances), (stacksz), (void *)(stacks_##name), \