Home | History | Annotate | Download | only in utilities

Lines Matching defs:Allocation

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
506 /* Validate allocation from above or input buffer pointer */