Open CASCADE Technology  7.0.0
Macros

Standard_DefineAlloc.hxx File Reference

Macros

#define DEFINE_STANDARD_ALLOC_ARRAY
 
#define DEFINE_STANDARD_ALLOC_PLACEMENT
 
#define DEFINE_STANDARD_ALLOC
 
#define WORKAROUND_SUNPRO_NEW_PLACEMENT
 
#define STANDARD_ALIGNED(theAlignment, theType, theVar)   theType theVar
 Declare variable with memory alignment. More...
 

Macro Definition Documentation

#define DEFINE_STANDARD_ALLOC
Value:
void* operator new (size_t theSize) \
{ \
return Standard::Allocate (theSize); \
} \
void operator delete (void* theAddress) \
{ \
Standard::Free (theAddress); \
} \
DEFINE_STANDARD_ALLOC_ARRAY \
DEFINE_STANDARD_ALLOC_PLACEMENT
static Standard_Address Allocate(const Standard_Size aSize)
Allocates memory blocks aSize - bytes to allocate.
#define DEFINE_STANDARD_ALLOC_ARRAY
Value:
void* operator new[] (size_t theSize) \
{ \
return Standard::Allocate (theSize); \
} \
void operator delete[] (void* theAddress) \
{ \
Standard::Free (theAddress); \
}
static Standard_Address Allocate(const Standard_Size aSize)
Allocates memory blocks aSize - bytes to allocate.
#define DEFINE_STANDARD_ALLOC_PLACEMENT
Value:
void* operator new (size_t, void* theAddress) \
{ \
return theAddress; \
} \
void operator delete (void*, void*) \
{ \
}
#define STANDARD_ALIGNED (   theAlignment,
  theType,
  theVar 
)    theType theVar

Declare variable with memory alignment.

1 static const STANDARD_ALIGNED(8, char, THE_ARRAY)[] = {0xFF, 0xFE, 0xFA, 0xFB, 0xFF, 0x11, 0x22, 0x33};
#define WORKAROUND_SUNPRO_NEW_PLACEMENT