Intel® Integrated Performance Primitives 2017 Update 3 Developer Reference

Malloc

Allocates memory aligned to 64-byte boundary.

Syntax

void* ippMalloc(int length);

Include Files

ippcore.h

Parameters

length

Size (in bytes) of the allocated block.

Description

This function allocates a memory block aligned to a 64-byte boundary.

Return Values

The return value of ippMalloc is a pointer to an aligned memory block. To free this block, use the ippFree function.

See Also