|
| template<class T > |
| void | _construct_array (T *first, T *last, const std::false_type &) |
| |
| template<class T > |
| void | _construct_array (T *, T *, const std::true_type &) |
| |
| template<class T > |
| void | _destroy_array (T *first, T *last, const std::false_type &) |
| |
| template<class T > |
| void | _destroy_array (T *, T *, const std::true_type &) |
| |
| template<class T > |
| void | construct_array (T *first, T *last) |
| |
| template<class T > |
| void | destroy_array (T *first, T *last) |
| |
| template<> |
| void | construct_array (dcomplex *first, dcomplex *last) |
| |
| template<> |
| void | destroy_array (dcomplex *first, dcomplex *last) |
| |
| void * | custom_aligned_malloc (std::size_t size) |
| |
| void | custom_aligned_free (void *ptr) |
| |
| void * | custom_aligned_realloc (void *ptr, std::size_t size, std::size_t=0) |
| |