/Zephyr-Core-3.7.0/tests/lib/heap_align/src/ |
D | main.c | 24 size_t prefix, size_t align, size_t size) in check_heap_align() argument 31 q = sys_heap_aligned_alloc(h, align, size); in check_heap_align() 33 zassert_true((((uintptr_t)q) & (align - 1)) == 0, "block not aligned"); in check_heap_align() 35 r = sys_heap_aligned_alloc(h, align, size); in check_heap_align() 37 zassert_true((((uintptr_t)r) & (align - 1)) == 0, "block not aligned"); in check_heap_align() 44 prefix, align, size); in check_heap_align() 77 for (size_t align = 8; align < HEAP_SZ / 4; align *= 2) { in ZTEST() local 78 for (size_t prefix = 0; prefix <= align; prefix += 8) { in ZTEST() 79 for (size_t size = 8; size <= align; size += 8) { in ZTEST() 80 check_heap_align(&heap, prefix, align, size); in ZTEST()
|
/Zephyr-Core-3.7.0/kernel/ |
D | mempool.c | 12 static void *z_heap_aligned_alloc(struct k_heap *heap, size_t align, size_t size) in z_heap_aligned_alloc() argument 27 __align = align | sizeof(heap_ref); in z_heap_aligned_alloc() 37 __ASSERT(align == 0 || ((uintptr_t)mem & (align - 1)) == 0, in z_heap_aligned_alloc() 38 "misaligned memory at %p (align = %zu)", mem, align); in z_heap_aligned_alloc() 65 void *k_aligned_alloc(size_t align, size_t size) in k_aligned_alloc() argument 67 __ASSERT(align / sizeof(void *) >= 1 in k_aligned_alloc() 68 && (align % sizeof(void *)) == 0, in k_aligned_alloc() 71 __ASSERT((align & (align - 1)) == 0, in k_aligned_alloc() 76 void *ret = z_heap_aligned_alloc(_SYSTEM_HEAP, align, size); in k_aligned_alloc() 160 void *z_thread_aligned_alloc(size_t align, size_t size) in z_thread_aligned_alloc() argument [all …]
|
/Zephyr-Core-3.7.0/include/zephyr/linker/ |
D | linker-tool-mwdt.h | 81 #define SECTION_PROLOGUE(name, options, align) name options : align argument 91 #define SECTION_DATA_PROLOGUE(name, options, align) \ argument 92 name options ALIGN(8) : align 94 #define SECTION_DATA_PROLOGUE(name, options, align) name options : align argument
|
D | linker-tool-lld.h | 39 #define SECTION_PROLOGUE(name, options, align) \ argument 40 name options : align 58 #define SECTION_DATA_PROLOGUE(name, options, align) \ argument 59 SECTION_PROLOGUE(name, options, align)
|
D | linker-tool-gcc.h | 177 #define SECTION_PROLOGUE(name, options, align) \ argument 178 name options : ALIGN_WITH_INPUT align 180 #define SECTION_PROLOGUE(name, options, align) \ 181 name options : align 202 #define SECTION_DATA_PROLOGUE(name, options, align) \ argument 205 #define SECTION_DATA_PROLOGUE(name, options, align) \ 206 SECTION_PROLOGUE(name, options, align)
|
/Zephyr-Core-3.7.0/subsys/debug/gdbstub/ |
D | gdbstub.c | 89 bool gdb_mem_can_read(const uintptr_t addr, const size_t len, uint8_t *align) in gdb_mem_can_read() argument 100 *align = 1; in gdb_mem_can_read() 108 *align = r->alignment; in gdb_mem_can_read() 110 *align = 1; in gdb_mem_can_read() 120 bool gdb_mem_can_write(const uintptr_t addr, const size_t len, uint8_t *align) in gdb_mem_can_write() argument 131 *align = 1; in gdb_mem_can_write() 139 *align = r->alignment; in gdb_mem_can_write() 141 *align = 1; in gdb_mem_can_write() 309 uint8_t align) in gdb_mem_read_aligned() argument 327 if (align > 4) { in gdb_mem_read_aligned() [all …]
|
/Zephyr-Core-3.7.0/scripts/logging/dictionary/dictionary_parser/ |
D | data_types.py | 110 align = 8 113 align = 8 115 align = 4 118 align = 4 120 return align 147 align = 8 149 align = 4 153 align = max(align, size) 154 self.data_types[data_type]['align'] = align
|
/Zephyr-Core-3.7.0/arch/arm64/core/ |
D | vector_table.S | 151 .align 11 154 .align 7 159 .align 7 168 .align 7 172 .align 7 177 .align 7 182 .align 7 191 .align 7 195 .align 7 200 .align 7 [all …]
|
/Zephyr-Core-3.7.0/boards/arm/fvp_baser_aemv8r/doc/ |
D | debug-with-arm-ds.rst | 13 :align: center 28 :align: center 34 :align: center 43 :align: center 49 :align: center 55 :align: center 64 :align: center 74 :align: center 81 :align: center 90 :align: center [all …]
|
/Zephyr-Core-3.7.0/lib/heap/ |
D | shared_multi_heap.c | 21 static void *smh_choice(struct sys_multi_heap *mheap, void *cfg, size_t align, size_t size) in smh_choice() argument 43 block = sys_heap_aligned_alloc(h, align, size); in smh_choice() 95 size_t align, size_t bytes) in shared_multi_heap_aligned_alloc() argument 102 align, bytes); in shared_multi_heap_aligned_alloc()
|
D | heap.c | 301 void *sys_heap_aligned_alloc(struct sys_heap *heap, size_t align, size_t bytes) in sys_heap_aligned_alloc() argument 313 rew = align & -align; in sys_heap_aligned_alloc() 314 if (align != rew) { in sys_heap_aligned_alloc() 315 align -= rew; in sys_heap_aligned_alloc() 318 if (align <= chunk_header_bytes(h)) { in sys_heap_aligned_alloc() 324 __ASSERT((align & (align - 1)) == 0, "align must be a power of 2"); in sys_heap_aligned_alloc() 335 chunksz_t padded_sz = bytes_to_chunksz(h, bytes + align - gap); in sys_heap_aligned_alloc() 344 mem = (uint8_t *) ROUND_UP(mem + rew, align) - rew; in sys_heap_aligned_alloc() 380 size_t align, size_t bytes) in sys_heap_aligned_realloc() argument 386 return sys_heap_aligned_alloc(heap, align, bytes); in sys_heap_aligned_realloc() [all …]
|
/Zephyr-Core-3.7.0/include/zephyr/sys/internal/ |
D | kobject_internal.h | 123 struct k_object *k_object_create_dynamic_aligned(size_t align, size_t size); 155 static inline struct k_object *k_object_create_dynamic_aligned(size_t align, in k_object_create_dynamic_aligned() argument 158 ARG_UNUSED(align); in k_object_create_dynamic_aligned()
|
/Zephyr-Core-3.7.0/doc/services/device_mgmt/smp_groups/ |
D | smp_group_3.rst | 10 :align: center 40 :align: center 60 :align: center 74 :align: center 117 :align: center 144 :align: center 164 :align: center 178 :align: center 213 :align: center 237 :align: center [all …]
|
D | smp_group_0.rst | 9 :align: center 45 :align: center 64 :align: center 76 :align: center 120 :align: center 146 :align: center 163 :align: center 218 :align: center 267 :align: center 283 :align: center [all …]
|
/Zephyr-Core-3.7.0/lib/os/ |
D | cbprintf_packaged.c | 250 unsigned int align; /* current argument's required alignment */ in cbvprintf_package() local 340 align = VA_STACK_ALIGN(char *); in cbvprintf_package() 354 align = VA_STACK_ALIGN(int); in cbvprintf_package() 358 buf = (void *)ROUND_UP(buf, align); in cbvprintf_package() 393 align = VA_STACK_ALIGN(int); in cbvprintf_package() 400 align = VA_STACK_ALIGN(long); in cbvprintf_package() 407 align = VA_STACK_ALIGN(long long); in cbvprintf_package() 424 align = VA_STACK_ALIGN(long double); in cbvprintf_package() 428 align = VA_STACK_ALIGN(double); in cbvprintf_package() 433 buf = (void *) ROUND_UP(buf, align); in cbvprintf_package() [all …]
|
/Zephyr-Core-3.7.0/doc/safety/images/ |
D | zephyr-safety-process.svg | 1 …align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe …
|
/Zephyr-Core-3.7.0/subsys/mem_mgmt/ |
D | mem_attr_heap.c | 26 static void *mah_choice(struct sys_multi_heap *m_heap, void *cfg, size_t align, size_t size) in mah_choice() argument 49 block = sys_heap_aligned_alloc(&h->heap, align, size); in mah_choice() 69 void *mem_attr_heap_aligned_alloc(uint32_t attr, size_t align, size_t bytes) in mem_attr_heap_aligned_alloc() argument 72 (void *)(long) attr, align, bytes); in mem_attr_heap_aligned_alloc()
|
/Zephyr-Core-3.7.0/doc/connectivity/bluetooth/autopts/ |
D | autopts-linux.rst | 38 :align: center 78 :align: center 85 :align: center 92 :align: center 106 :align: center 114 :align: center 127 :align: center 139 :align: center 144 :align: center 156 :align: center [all …]
|
D | autopts-win10.rst | 34 :align: center 39 :align: center 51 :align: center 63 :align: center 85 :align: center 93 :align: center 98 :align: center 108 :align: center 169 :align: center 176 :align: center [all …]
|
/Zephyr-Core-3.7.0/arch/arc/core/ |
D | regular_irq.S | 268 .align 4 280 .align 4 321 .align 4
|
/Zephyr-Core-3.7.0/drivers/tee/ |
D | tee.c | 9 int tee_add_shm(const struct device *dev, void *addr, size_t align, size_t size, in tee_add_shm() argument 21 if (align) { in tee_add_shm() 22 p = k_aligned_alloc(align, size); in tee_add_shm()
|
/Zephyr-Core-3.7.0/arch/xtensa/core/ |
D | xtensa_hifi.S | 24 .align 4 45 .align 4
|
/Zephyr-Core-3.7.0/include/zephyr/sys/ |
D | util.h | 301 #define IS_ALIGNED(ptr, align) (((uintptr_t)(ptr)) % (align) == 0) argument 306 #define ROUND_UP(x, align) \ argument 307 ((((unsigned long)(x) + ((unsigned long)(align) - 1)) / \ 308 (unsigned long)(align)) * (unsigned long)(align)) 313 #define ROUND_DOWN(x, align) \ argument 314 (((unsigned long)(x) / (unsigned long)(align)) * (unsigned long)(align))
|
D | multi_heap.h | 58 size_t align, size_t size); 139 void *cfg, size_t align, size_t bytes);
|
/Zephyr-Core-3.7.0/include/zephyr/debug/ |
D | gdbstub.h | 98 bool gdb_mem_can_read(const uintptr_t addr, const size_t len, uint8_t *align); 111 bool gdb_mem_can_write(const uintptr_t addr, const size_t len, uint8_t *align);
|