Home
last modified time | relevance | path

Searched refs:MEM_REGION_ALLOC (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/tests/kernel/mem_protect/mem_protect/src/
Dmem_protect.h57 #define MEM_REGION_ALLOC (4096) macro
59 #define MEM_REGION_ALLOC (Z_ARC_MPU_ALIGN) macro
61 #define MEM_REGION_ALLOC (4096) macro
63 #define MEM_REGION_ALLOC (Z_THREAD_MIN_STACK_ALIGN) macro
66 #define MEM_REGION_ALLOC (CONFIG_PMP_GRANULARITY) macro
68 #define MEM_REGION_ALLOC (4) macro
71 #define MEM_REGION_ALLOC (4096) macro
75 #define MEM_DOMAIN_ALIGNMENT __aligned(MEM_REGION_ALLOC)
Dmem_domain.c29 static volatile uint8_t __aligned(MEM_REGION_ALLOC)
30 rw_bufs[NUM_RW_PARTS][MEM_REGION_ALLOC];
34 static volatile uint8_t __aligned(MEM_REGION_ALLOC) ro_buf[MEM_REGION_ALLOC];
72 rw_parts[i].size = MEM_REGION_ALLOC; in test_mem_domain_setup()
75 for (unsigned int j = 0; j < MEM_REGION_ALLOC; j++) { in test_mem_domain_setup()
84 for (unsigned int j = 0; j < MEM_REGION_ALLOC; j++) { in test_mem_domain_setup()
122 for (unsigned int j = 0; j < MEM_REGION_ALLOC; j++) { in rw_part_access()
136 for (unsigned int i = 0; i < MEM_REGION_ALLOC; i++) { in ro_part_access()
221 static volatile uint8_t __aligned(MEM_REGION_ALLOC)
222 no_access_buf[MEM_REGION_ALLOC];
[all …]
Dmem_partition.c48 K_APP_BMEM(part_arch) uint8_t __aligned(MEM_REGION_ALLOC)
49 buf_arc[MEM_REGION_ALLOC];
64 zassert_true(part_arch.size == MEM_REGION_ALLOC); in ZTEST()
Dinherit.c34 uint8_t MEM_DOMAIN_ALIGNMENT inherit_buf[MEM_REGION_ALLOC]; /* for mem domain */
62 inherit_buf[MEM_REGION_ALLOC-1] = 0xA5; in access_test()