Searched defs:GetAlignedMemory (Results 1 - 1 of 1) sorted by relevance

/bionic/benchmarks/
H A Dutil.cpp29 char* GetAlignedMemory(char* orig_ptr, size_t alignment, size_t or_mask) { function
31 errx(1, "warning: alignment passed into GetAlignedMemory is not a power of two.");
34 errx(1, "warning: or_mask passed into GetAlignedMemory is too high.");
50 return GetAlignedMemory(buf->data(), alignment, 0);
55 return reinterpret_cast<wchar_t*>(GetAlignedMemory(reinterpret_cast<char*>(buf->data()),

Completed in 34 milliseconds