Home
last modified time | relevance | path

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

/Zephyr-Core-3.4.0/lib/os/
Dheap.c304 size_t gap, rew; in sys_heap_aligned_alloc() local
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()
316 gap = MIN(rew, chunk_header_bytes(h)); in sys_heap_aligned_alloc()
321 rew = 0; in sys_heap_aligned_alloc()
344 mem = (uint8_t *) ROUND_UP(mem + rew, align) - rew; in sys_heap_aligned_alloc()