Free
Free
Frees memory allocated by the function
ippsMalloc
.Syntax
void ippsFree(void*
ptr
);
Include Files
ipps.h
Domain Dependencies
Headers:
ippcore.h
,
ippvm.h
Libraries:
ippcore.lib
,
ippvm.lib
Parameters
- ptr
- Pointer to a memory block to be freed. The memory block pointed to withptris allocated by the functionippsMalloc.
Description
This function frees the aligned memory block allocated by the function
ippsMalloc
.Use the
ippsFree()
to free memory allocated by ippsMalloc()
. Use free
to free memory allocated by malloc
or calloc
.