Intel® Integrated Performance Primitives (Intel® IPP) Developer Guide and Reference

ID 790148
Date 3/22/2024
Public
Document Table of Contents

Malloc

Allocates memory aligned to 64-byte boundary.

Syntax

void* ippMalloc(int length);

Memory allocation for platform-aware functions

void* ippMalloc_L(IppSizeL length);

Include Files

ippcore.h

Flavors with the _L suffix: ippcore_l.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