Lines Matching refs:Signature
393 * PARAMETERS: Name - Ascii string containing an ACPI signature
403 char *Signature)
406 if (!strncmp (Signature, "RSD ", 4))
408 Signature[3] = 'P';
495 * Signature - Requested signature to count
497 * RETURN: The number of instances of the signature
499 * DESCRIPTION: Count the instances of tables with the given signature within
507 char *Signature)
520 /* Count the number of instances of this signature */
533 if (ACPI_COMPARE_NAMESEG (Gbl_InstanceBuffer, Signature))
549 * Signature - Requested ACPI signature
551 * RETURN: The next instance number for this signature. Zero if this
552 * is the first instance of this signature.
564 char *Signature)
572 if (*(UINT32 *) Signature == Info->Signature)
582 /* Signature not found, create new table info block */
592 Info->Signature = *(UINT32 *) Signature;
593 Info->Instances = AxCountTableInstances (InputPathname, Signature);
613 * ThisSignature - Signature of current ACPI table
681 /* RSDP has an oddball signature and header */
683 if (ACPI_VALIDATE_RSDP_SIG (TableHeader->Signature))
693 if (!AcpiUtValidNameseg (TableHeader->Signature))
698 /* Signature and Table length */
701 printf (" %.2u) %5.4s 0x%8.8X", Gbl_TableCount, TableHeader->Signature,
704 /* FACS has only signature and length */
706 if (ACPI_COMPARE_NAMESEG (TableHeader->Signature, "FACS"))