Home | History | Annotate | Download | only in utilities

Lines Matching refs:Size

73     ACPI_SIZE               Size,
92 * ObjectSize - Size of each cached object
128 * PARAMETERS: Size - Size of the allocation
141 ACPI_SIZE Size,
150 /* Check for an inadvertent size of zero bytes */
152 if (!Size)
156 Size = 1;
159 Allocation = AcpiOsAllocate (Size + sizeof (ACPI_DEBUG_MEM_HEADER));
165 "Could not allocate size %u", (UINT32) Size));
171 Allocation, Size, ACPI_MEM_MALLOC, Component, Module, Line);
179 AcpiGbl_GlobalList->TotalSize += (UINT32) Size;
180 AcpiGbl_GlobalList->CurrentTotalSize += (UINT32) Size;
197 * PARAMETERS: Size - Size of the allocation
210 ACPI_SIZE Size,
219 /* Check for an inadvertent size of zero bytes */
221 if (!Size)
225 Size = 1;
229 Size + sizeof (ACPI_DEBUG_MEM_HEADER));
235 "Could not allocate size %u", (UINT32) Size));
239 Status = AcpiUtTrackAllocation (Allocation, Size,
248 AcpiGbl_GlobalList->TotalSize += (UINT32) Size;
249 AcpiGbl_GlobalList->CurrentTotalSize += (UINT32) Size;
303 AcpiGbl_GlobalList->CurrentTotalSize -= DebugBlock->Size;
391 * Size - Size of the allocation
406 ACPI_SIZE Size,
447 Allocation->Size = (UINT32) Size;
558 ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS, "Freeing %p, size 0%X\n",
559 &Allocation->UserSpace, Allocation->Size));
563 memset (&Allocation->UserSpace, 0xEA, Allocation->Size);
684 if (Element->Size < sizeof (ACPI_COMMON_DESCRIPTOR))
688 Descriptor, Element->Size, Element->Module,
699 Descriptor, Element->Size, Element->Module,
707 AcpiUtDumpBuffer ((UINT8 *) Descriptor, Element->Size,
719 if (Element->Size == sizeof (ACPI_OPERAND_OBJECT))
727 if (Element->Size == sizeof (ACPI_PARSE_OBJECT))
735 if (Element->Size == sizeof (ACPI_NAMESPACE_NODE))