OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:actualAlign
(Results
1 - 2
of
2
) sorted by null
/device/generic/goldfish-opengl/android-emu/android/base/
AlignedBuf.cpp
21
size_t
actualAlign
= std::max(align, sizeof(void*));
23
void* res = _aligned_malloc(size,
actualAlign
);
30
if (posix_memalign(&res,
actualAlign
, size)) {
AlignedBuf.h
119
size_t
actualAlign
= std::max(align, sizeof(void*));
121
return _aligned_malloc(sizeBytes,
actualAlign
);
124
if (posix_memalign(&res,
actualAlign
, sizeBytes)) {
Completed in 136 milliseconds