HomeSort by: relevance | last modified time | path
    Searched defs:Allocation (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/utilities/
utalloc.c 3 * Module Name: utalloc - local memory allocation routines
165 * PARAMETERS: Size - Size of the allocation
179 void *Allocation;
185 Allocation = AcpiOsAllocate (Size);
186 if (Allocation)
190 memset (Allocation, 0, Size);
193 return (Allocation);
292 /* Memory allocation lists */
368 /* Debug only - display leftover memory allocation, if any */
480 * purposefully bypass the (optionally enabled) internal allocation
    [all...]
uttrack.c 3 * Module Name: uttrack - Memory allocation tracking routines (debug only)
156 * Each memory allocation is tracked via a doubly linked list. Each
176 ACPI_DEBUG_MEM_BLOCK *Allocation);
236 * PARAMETERS: Size - Size of the allocation
254 ACPI_DEBUG_MEM_BLOCK *Allocation;
267 Allocation = AcpiOsAllocate (Size + sizeof (ACPI_DEBUG_MEM_HEADER));
268 if (!Allocation)
270 /* Report allocation error */
279 Allocation, Size, ACPI_MEM_MALLOC, Component, Module, Line);
282 AcpiOsFree (Allocation);
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_descriptions.h 49 const char *Allocation() { return Magenta(); }

Completed in 34 milliseconds