Home | History | Annotate | Download | only in nulldrv

Lines Matching refs:posix_memalign

195     // Vulkan requires 'alignment' to be a power of two, but posix_memalign
197 int ret = posix_memalign(&ptr, std::max(alignment, sizeof(void*)), size);
222 if (posix_memalign(&new_ptr, std::max(alignment, sizeof(void*)), size) != 0)