Sacado Package Browser (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Static Public Member Functions | List of all members
Sacado::ds_array< T, isScalar > Struct Template Reference

Dynamic array allocation class that works for any type. More...

#include <Sacado_DynamicArrayTraits.hpp>

Static Public Member Functions

static SACADO_INLINE_FUNCTION Tget (int sz)
 Get memory for new array of length sz. More...
 
static SACADO_INLINE_FUNCTION Tget_and_fill (int sz)
 Get memory for new array of length sz and fill with zeros. More...
 
static SACADO_INLINE_FUNCTION Tget_and_fill (const T *src, int sz)
 Get memory for new array of length sz and fill with entries from src. More...
 
static SACADO_INLINE_FUNCTION Tstrided_get_and_fill (const T *src, int stride, int sz)
 Get memory for new array of length sz and fill with entries from src. More...
 
static SACADO_INLINE_FUNCTION void copy (const T *src, T *dest, int sz)
 Copy array from src to dest of length sz. More...
 
static SACADO_INLINE_FUNCTION void strided_copy (const T *src, int src_stride, T *dest, int dest_stride, int sz)
 Copy array from src to dest of length sz. More...
 
static SACADO_INLINE_FUNCTION void zero (T *dest, int sz)
 Zero out array dest of length sz. More...
 
static SACADO_INLINE_FUNCTION void strided_zero (T *dest, int stride, int sz)
 Zero out array dest of length sz. More...
 
static SACADO_INLINE_FUNCTION void destroy_and_release (T *m, int sz)
 Destroy array elements and release memory. More...
 

Detailed Description

template<typename T, bool isScalar = IsScalarType<T>::value>
struct Sacado::ds_array< T, isScalar >

Dynamic array allocation class that works for any type.

Definition at line 258 of file Sacado_DynamicArrayTraits.hpp.

Member Function Documentation

template<typename T , bool isScalar = IsScalarType<T>::value>
static SACADO_INLINE_FUNCTION T* Sacado::ds_array< T, isScalar >::get ( int  sz)
inlinestatic

Get memory for new array of length sz.

Definition at line 262 of file Sacado_DynamicArrayTraits.hpp.

template<typename T , bool isScalar = IsScalarType<T>::value>
static SACADO_INLINE_FUNCTION T* Sacado::ds_array< T, isScalar >::get_and_fill ( int  sz)
inlinestatic

Get memory for new array of length sz and fill with zeros.

Definition at line 272 of file Sacado_DynamicArrayTraits.hpp.

template<typename T , bool isScalar = IsScalarType<T>::value>
static SACADO_INLINE_FUNCTION T* Sacado::ds_array< T, isScalar >::get_and_fill ( const T src,
int  sz 
)
inlinestatic

Get memory for new array of length sz and fill with entries from src.

Definition at line 285 of file Sacado_DynamicArrayTraits.hpp.

template<typename T , bool isScalar = IsScalarType<T>::value>
static SACADO_INLINE_FUNCTION T* Sacado::ds_array< T, isScalar >::strided_get_and_fill ( const T src,
int  stride,
int  sz 
)
inlinestatic

Get memory for new array of length sz and fill with entries from src.

Definition at line 298 of file Sacado_DynamicArrayTraits.hpp.

template<typename T , bool isScalar = IsScalarType<T>::value>
static SACADO_INLINE_FUNCTION void Sacado::ds_array< T, isScalar >::copy ( const T src,
T dest,
int  sz 
)
inlinestatic

Copy array from src to dest of length sz.

Definition at line 310 of file Sacado_DynamicArrayTraits.hpp.

template<typename T , bool isScalar = IsScalarType<T>::value>
static SACADO_INLINE_FUNCTION void Sacado::ds_array< T, isScalar >::strided_copy ( const T src,
int  src_stride,
T dest,
int  dest_stride,
int  sz 
)
inlinestatic

Copy array from src to dest of length sz.

Definition at line 317 of file Sacado_DynamicArrayTraits.hpp.

template<typename T , bool isScalar = IsScalarType<T>::value>
static SACADO_INLINE_FUNCTION void Sacado::ds_array< T, isScalar >::zero ( T dest,
int  sz 
)
inlinestatic

Zero out array dest of length sz.

Definition at line 328 of file Sacado_DynamicArrayTraits.hpp.

template<typename T , bool isScalar = IsScalarType<T>::value>
static SACADO_INLINE_FUNCTION void Sacado::ds_array< T, isScalar >::strided_zero ( T dest,
int  stride,
int  sz 
)
inlinestatic

Zero out array dest of length sz.

Definition at line 335 of file Sacado_DynamicArrayTraits.hpp.

template<typename T , bool isScalar = IsScalarType<T>::value>
static SACADO_INLINE_FUNCTION void Sacado::ds_array< T, isScalar >::destroy_and_release ( T m,
int  sz 
)
inlinestatic

Destroy array elements and release memory.

Definition at line 344 of file Sacado_DynamicArrayTraits.hpp.


The documentation for this struct was generated from the following file: