QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::aligned_allocator::detail Namespace Reference

Enumerations

enum class  allocator_alignment : size_t {
  Default = sizeof(void *) , SSE = 16 , M128 = 16 , AVX = 32 ,
  M256 = 32
}
 

Functions

int posix_memalign (void **memptr, size_t alignment, size_t size)
 
void * allocate_aligned_memory (size_t align, size_t size)
 
void deallocate_aligned_memory (void *ptr) noexcept
 

Enumeration Type Documentation

◆ allocator_alignment

Enumerator
Default 

The default alignment on this machine.

SSE 

The alignment for SSE. Better to use M128 for NEON et al support.

M128 

The alignment for a 128 bit vector.

AVX 

The alignment for AVX. Better to use M256 for NEON et al support.

M256 

The alignment for a 256 bit vector.

58 {
59 Default = sizeof(void *), //!< The default alignment on this machine.
60 SSE = 16, //!< The alignment for SSE. Better to use M128 for NEON et al support.
61 M128 = 16, //!< The alignment for a 128 bit vector.
62 AVX = 32, //!< The alignment for AVX. Better to use M256 for NEON et al support.
63 M256 = 32 //!< The alignment for a 256 bit vector.
64 };

Function Documentation

◆ posix_memalign()

int quickcpplib::_xxx::aligned_allocator::detail::posix_memalign ( void **  memptr,
size_t  alignment,
size_t  size 
)

◆ allocate_aligned_memory()

void * quickcpplib::_xxx::aligned_allocator::detail::allocate_aligned_memory ( size_t  align,
size_t  size 
)
inline
72 {
73#ifdef _WIN32
74 return _aligned_malloc(size, align);
75#else
76 void *ret = nullptr;
77 if(posix_memalign(&ret, align, size))
78 return nullptr;
79 return ret;
80#endif
81 }
int posix_memalign(void **memptr, size_t alignment, size_t size)

◆ deallocate_aligned_memory()

void quickcpplib::_xxx::aligned_allocator::detail::deallocate_aligned_memory ( void *  ptr)
inlinenoexcept
83 {
84#ifdef _WIN32
85 _aligned_free(ptr);
86#else
87 free(ptr);
88#endif
89 }