1#ifndef Cpl_Memory_Aligned_h_
2#define Cpl_Memory_Aligned_h_
27template <
size_t sizeInBytes>
33 size_t m_wordMem[( sizeInBytes + (
sizeof( size_t ) - 1 ) ) /
sizeof(
size_t )];
51 size_t m_wordMem[(
sizeof( T ) + (
sizeof(
size_t ) - 1 ) ) /
sizeof( size_t )];
size_t m_wordMem[(sizeof(T)+(sizeof(size_t) - 1))/sizeof(size_t)]
This member defines the memory in terms of an array of size_t words.
Definition Aligned.h:51
char m_byteMem[sizeof(T)]
This member defines the memory in terms of a character array.
Definition Aligned.h:55
size_t m_wordMem[(sizeInBytes+(sizeof(size_t) - 1))/sizeof(size_t)]
This member defines the memory in terms of an array of size_t words.
Definition Aligned.h:33
char m_byteMem[sizeInBytes]
This member defines the memory in terms of a character array.
Definition Aligned.h:37
This type is used to create a memory-block that is aligned to a size_t boundary.
Definition Aligned.h:29
This type is used to create a memory block that is large enough to hold the memory footprint of ONE i...
Definition Aligned.h:47
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20