Home
last modified time | relevance | path

Searched refs:RequiredLength (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/sys/external/bsd/acpica/dist/utilities/
H A Dutalloc.c338 ACPI_SIZE RequiredLength) in AcpiUtInitializeBuffer() argument
345 if (!Buffer || !RequiredLength) in AcpiUtInitializeBuffer()
355 Buffer->Length = RequiredLength; in AcpiUtInitializeBuffer()
377 Buffer->Pointer = AcpiOsAllocate (RequiredLength); in AcpiUtInitializeBuffer()
384 Buffer->Pointer = ACPI_ALLOCATE (RequiredLength); in AcpiUtInitializeBuffer()
391 if (InputBufferLength < RequiredLength) in AcpiUtInitializeBuffer()
407 memset (Buffer->Pointer, 0, RequiredLength); in AcpiUtInitializeBuffer()
/netbsd-src/sys/external/bsd/acpica/dist/namespace/
H A Dnsutils.c478 UINT32 RequiredLength; in AcpiNsExternalizeName() local
577 RequiredLength = PrefixLength + (4 * NumSegments) + in AcpiNsExternalizeName()
584 if (RequiredLength > InternalNameLength) in AcpiNsExternalizeName()
592 *ConvertedName = ACPI_ALLOCATE_ZEROED (RequiredLength); in AcpiNsExternalizeName()
627 *ConvertedNameLength = (UINT32) RequiredLength; in AcpiNsExternalizeName()
/netbsd-src/sys/external/bsd/acpica/dist/executer/
H A Dexfldio.c900 UINT32 RequiredLength; in AcpiExInsertIntoField() local
910 RequiredLength = ACPI_ROUND_BITS_UP_TO_BYTES ( in AcpiExInsertIntoField()
919 if (BufferLength < RequiredLength) in AcpiExInsertIntoField()
923 NewBuffer = ACPI_ALLOCATE_ZEROED (RequiredLength); in AcpiExInsertIntoField()
936 BufferLength = RequiredLength; in AcpiExInsertIntoField()
/netbsd-src/sys/external/bsd/acpica/dist/include/
H A Dacutils.h1046 ACPI_SIZE RequiredLength);