GM6000 Digital Heater Controller Branch: main
SDX-1330
Classes | Namespaces
Aligned.h File Reference
#include <stdlib.h>
Include dependency graph for Aligned.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

union  Cpl::Memory::Aligned< sizeInBytes >
 This type is used to create a memory-block that is aligned to a size_t boundary. More...
 
union  Cpl::Memory::AlignedClass< T >
 This type is used to create a memory block that is large enough to hold the memory footprint of ONE instance of 'class T'. More...
 

Namespaces

namespace  Cpl
 The 'Cpl' namespace is the root name space for the Colony.
 
namespace  Cpl::Memory
 The 'Cpl::Memory' namespace provides a collection interfaces that allow a application to manually manage "dynamic memory" independent of the actual heap.
 

Class Documentation

◆ Cpl::Memory::Aligned

union Cpl::Memory::Aligned
template<size_t sizeInBytes>
union Cpl::Memory::Aligned< sizeInBytes >

This type is used to create a memory-block that is aligned to a size_t boundary.

This class statically allocates at least 'sizeInBytes' bytes of memory.

Class Members
char m_byteMem[sizeInBytes] This member defines the memory in terms of a character array.
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.

◆ Cpl::Memory::AlignedClass

union Cpl::Memory::AlignedClass
template<class T>
union Cpl::Memory::AlignedClass< T >

This type is used to create a memory block that is large enough to hold the memory footprint of ONE instance of 'class T'.

The memory block is aligned to a size_t boundary.

Inheritance diagram for Cpl::Memory::AlignedClass< T >:
[legend]
Class Members
char m_byteMem[sizeof(T)] This member defines the memory in terms of a character array.
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.