Searched refs:__alignment (Results 1 – 3 of 3) sorted by relevance
90 void* memalign(size_t __alignment, size_t __byte_count) __mallocfunc __BIONIC_ALLOC_SIZE(2) __wur;248 extern void* (*volatile __memalign_hook)(size_t __alignment, size_t __byte_count, const void* __cal…
80 int posix_memalign(void** __memptr, size_t __alignment, size_t __size) __INTRODUCED_IN(17);82 void* aligned_alloc(size_t __alignment, size_t __size) __INTRODUCED_IN(28);
63 #define __BIONIC_ALIGN(__value, __alignment) (((__value) + (__alignment)-1) & ~((__alignment)-1)) argument