Searched refs:total_size (Results 1 – 4 of 4) sorted by relevance
/kernel/ |
A D | stack.c | 69 size_t total_size; in z_vrfy_k_stack_alloc_init() local 74 &total_size))); in z_vrfy_k_stack_alloc_init()
|
A D | msg_q.c | 74 size_t total_size; in z_impl_k_msgq_alloc_init() local 78 if (size_mul_overflow(msg_size, max_msgs, &total_size)) { in z_impl_k_msgq_alloc_init() 81 buffer = z_thread_malloc(total_size); in z_impl_k_msgq_alloc_init()
|
A D | thread.c | 682 size_t total_size, stack_obj_size; in z_vrfy_k_thread_create() local 701 stack_size, &total_size), in z_vrfy_k_thread_create() 714 K_OOPS(K_SYSCALL_VERIFY_MSG(total_size <= stack_obj_size, in z_vrfy_k_thread_create() 716 total_size, stack_obj_size)); in z_vrfy_k_thread_create()
|
A D | mmu.c | 572 size_t total_size; in k_mem_map_phys_guard() local 600 if (size_add_overflow(size, CONFIG_MMU_PAGE_SIZE * 2, &total_size)) { in k_mem_map_phys_guard() 607 dst = virt_region_alloc(total_size, CONFIG_MMU_PAGE_SIZE); in k_mem_map_phys_guard() 684 size_t total_size; in k_mem_unmap_phys_guard() local 811 total_size = size + (CONFIG_MMU_PAGE_SIZE * 2); in k_mem_unmap_phys_guard() 812 virt_region_free(pos, total_size); in k_mem_unmap_phys_guard()
|
Completed in 12 milliseconds