Home
last modified time | relevance | path

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

/cts/hostsidetests/securitybulletin/securityPatch/CVE-2024-0023/
Dpoc.cpp40 MINIMUM_ALIGNMENT + 2 /* width */, 2 /* height */, in main()
54 MINIMUM_ALIGNMENT); // as per MINIMUM_ALIGNMENT in memutils in main()
64 MINIMUM_ALIGNMENT /* buffersize */, view); in main()
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2023-21127/
Dpoc.cpp56 size_t offset = MINIMUM_ALIGNMENT - (sampleSize % MINIMUM_ALIGNMENT) + 1; in main()
/cts/hostsidetests/securitybulletin/securityPatch/includes/
Dmemutils.c122 if (0 != (size % MINIMUM_ALIGNMENT)) { in memalign()
123 aligned_size = size + (MINIMUM_ALIGNMENT - (size % MINIMUM_ALIGNMENT)); in memalign()
162 return memalign(MINIMUM_ALIGNMENT, size); in malloc()
Dmemutils.h22 #define MINIMUM_ALIGNMENT (16) macro