Searched refs:ALIGN_TO (Results 1 – 2 of 2) sorted by relevance
/picolibc-3.5.0-3.4.0/newlib/libc/stdlib/ |
D | nano-mallocr.c | 63 #define ALIGN_TO(size, align) \ macro 66 #define ALIGN_TO(size, align) \ macro 70 #define ALIGN_PTR(ptr, align) (void *) (uintptr_t) ALIGN_TO((uintptr_t) ptr, align) 119 #define MALLOC_HEAD ALIGN_TO(sizeof(size_t), MALLOC_HEAD_ALIGN) 125 #define MALLOC_MINSIZE ALIGN_TO(sizeof(chunk_t), MALLOC_HEAD_ALIGN) 189 malloc_size = ALIGN_TO(malloc_size, MALLOC_CHUNK_ALIGN); in chunk_size() 631 assert (ALIGN_TO(r->size, MALLOC_HEAD_ALIGN) == r->size); in __malloc_validate_block() 742 s = ALIGN_TO(MAX(s,1), MALLOC_CHUNK_ALIGN); in memalign() 815 return valloc(ALIGN_TO(s, MALLOC_PAGE_ALIGN)); in pvalloc()
|
/picolibc-3.5.0-3.4.0/newlib/ |
D | ChangeLog-2015 | 1241 * libc/stdlib/nano-mallocr.c (ALIGN_TO): Do not assume that
|