Sacado Package Browser (Single Doxygen Collection)
Version of the Day
|
Dynamic array allocation class that works for any type. More...
#include <Sacado_Fad_Exp_MemPoolStorage.hpp>
Static Public Member Functions | |
static T * | get (int sz, MemPool *pool) |
Get memory for new array of length sz . More... | |
static T * | get_and_fill (int sz, MemPool *pool) |
Get memory for new array of length sz and fill with zeros. More... | |
static T * | get_and_fill (const T *src, int sz, MemPool *pool) |
Get memory for new array of length sz and fill with entries from src . More... | |
static void | copy (const T *src, T *dest, int sz) |
Copy array from src to dest of length sz . More... | |
static void | zero (T *dest, int sz) |
Zero out array dest of length sz . More... | |
static void | destroy_and_release (T *m, int sz, MemPool *pool) |
Destroy array elements and release memory. More... | |
Dynamic array allocation class that works for any type.
Definition at line 49 of file Sacado_Fad_Exp_MemPoolStorage.hpp.
|
inlinestatic |
Get memory for new array of length sz
.
Definition at line 52 of file Sacado_Fad_Exp_MemPoolStorage.hpp.
|
inlinestatic |
Get memory for new array of length sz
and fill with zeros.
Definition at line 65 of file Sacado_Fad_Exp_MemPoolStorage.hpp.
|
inlinestatic |
Get memory for new array of length sz
and fill with entries from src
.
Definition at line 81 of file Sacado_Fad_Exp_MemPoolStorage.hpp.
|
inlinestatic |
Copy array from src
to dest
of length sz
.
Definition at line 94 of file Sacado_Fad_Exp_MemPoolStorage.hpp.
|
inlinestatic |
Zero out array dest
of length sz
.
Definition at line 100 of file Sacado_Fad_Exp_MemPoolStorage.hpp.
|
inlinestatic |
Destroy array elements and release memory.
Definition at line 106 of file Sacado_Fad_Exp_MemPoolStorage.hpp.