Lines Matching full:allocation
4 * Module Name: utalloc - local memory allocation routines
22 * PARAMETERS: size - Size of the allocation
33 void *allocation; in acpi_os_allocate_zeroed() local
37 allocation = acpi_os_allocate(size); in acpi_os_allocate_zeroed()
38 if (allocation) { in acpi_os_allocate_zeroed()
42 memset(allocation, 0, size); in acpi_os_allocate_zeroed()
45 return (allocation); in acpi_os_allocate_zeroed()
152 /* Memory allocation lists */ in acpi_ut_create_caches()
222 /* Debug only - display leftover memory allocation, if any */ in acpi_ut_delete_caches()
322 * purposefully bypass the (optionally enabled) internal allocation in acpi_ut_initialize_buffer()
347 /* Validate allocation from above or input buffer pointer */ in acpi_ut_initialize_buffer()