Lines Matching full:start
136 * +------------+ <- thread.stack_info.start
142 * +------------+ <- thread.stack_info.start + thread.stack_info.size
166 * +------------+ <- thread.stack_info.start
172 * +------------+ <- thread.stack_info.start + thread.stack_info.size
194 * +------------+ <- thread.stack_obj = thread.stack_info.start
200 * +------------+ <- thread.stack_info.start + thread.stack_info.size
212 * +------------+ <- thread.stack_info.start
218 * +------------+ <- thread.stack_info.start + thread.stack_info.size
239 * +------------+ <- thread.stack_info.start
245 * +------------+ <- thread.stack_info.start + thread.stack_info.size
307 #define _ARCH_MEM_PARTITION_ALIGN_CHECK(start, size) \ argument
312 BUILD_ASSERT(IS_BUILTIN_MWDT(size) ? IS_BUILTIN_MWDT(start) ? \
313 !((uintptr_t)(start) & ((size) - 1)) : 1 : 1, \
314 "partition start address must align with size.")
316 #define _ARCH_MEM_PARTITION_ALIGN_CHECK(start, size) \ argument
321 BUILD_ASSERT(IS_BUILTIN_MWDT(start) ? (uintptr_t)(start) % Z_ARC_MPU_ALIGN == 0 : 1, \
322 "partition start address must align with " STRINGIFY(Z_ARC_MPU_ALIGN))
326 #define _ARCH_MEM_PARTITION_ALIGN_CHECK(start, size) \ argument
331 BUILD_ASSERT(!((uintptr_t)(start) & ((size) - 1)), \
332 "partition start address must align with size.")
334 #define _ARCH_MEM_PARTITION_ALIGN_CHECK(start, size) \ argument
339 BUILD_ASSERT((uintptr_t)(start) % Z_ARC_MPU_ALIGN == 0, \
340 "partition start address must align with " STRINGIFY(Z_ARC_MPU_ALIGN))