Home
last modified time | relevance | path

Searched refs:FDKcalloc_L (Results 1 – 2 of 2) sorted by relevance

/external/aac/libSYS/include/
DgenericStds.h191 …type * Get ## name(int n) { FDK_ASSERT((n) == 0); return ((type*)FDKcalloc_L(num, sizeof(type), s)…
197 …type * Get ## name (int n) { FDK_ASSERT((n) < (n2)); return (type*)FDKcalloc_L(n1, sizeof(type), s…
294 void *FDKcalloc_L(const UINT n, const UINT size, MEMORY_SECTION s);
/external/aac/libSYS/src/
DgenericStds.cpp269 void *FDKcalloc_L(const UINT dim, const UINT size, MEMORY_SECTION s) in FDKcalloc_L() function
301 …addr = FDKcalloc_L(1, size + alignment + sizeof(void*), s); /* Malloc and clear memory. … in FDKaalloc_L()