Home
last modified time | relevance | path

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

/cts/hostsidetests/securitybulletin/securityPatch/includes/
Dmemutils.c120 if (0 != (size % MINIMUM_ALIGNMENT)) { in memalign()
121 aligned_size = size + (MINIMUM_ALIGNMENT - (size % MINIMUM_ALIGNMENT)); in memalign()
160 return memalign(MINIMUM_ALIGNMENT, size); in malloc()
Dmemutils.h22 #define MINIMUM_ALIGNMENT (16) macro