Home | History | Annotate | Download | only in AcpiPlatformDxe

Lines Matching refs:Facs

428   CONST EFI_ACPI_1_0_FIRMWARE_ACPI_CONTROL_STRUCTURE *Facs;

461 // To make our job simple, the FACS has a custom header. Sigh.
463 if (sizeof *Facs <= Blob2Remaining) {
464 Facs = (EFI_ACPI_1_0_FIRMWARE_ACPI_CONTROL_STRUCTURE *)(UINTN)PointerValue;
466 if (Facs->Length >= sizeof *Facs &&
467 Facs->Length <= Blob2Remaining &&
468 Facs->Signature ==
471 (CONST CHAR8 *)&Facs->Signature, Facs->Length));
472 TableSize = Facs->Length;