HomeSort by relevance Sort by last modified time
    Searched refs:FDKcalloc_L (Results 1 - 2 of 2) sorted by null

  /external/aac/libSYS/include/
genericStds.h 115 * functions like FDKcalloc_L() to specify the requested memory's location.
191 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); } \
284 * requested, FDKcalloc_L() first tries to use L1 memory, which sizes are defined
286 * FDKcalloc_L() tries to use L2 memory. If that fails as well, the requested
294 void *FDKcalloc_L(const UINT n, const UINT size, MEMORY_SECTION s);
298 * See FDKcalloc_L() description for details - same applies here.
  /external/aac/libSYS/src/
genericStds.cpp 267 * FDKcalloc_L
269 void *FDKcalloc_L(const UINT dim, const UINT size, MEMORY_SECTION s)
301 addr = FDKcalloc_L(1, size + alignment + sizeof(void*), s); /* Malloc and clear memory. */

Completed in 183 milliseconds