Lines Matching defs:Checksum
820 * ReturnValue - Store the checksum of subtable
824 * DESCRIPTION: Get the checksum of subtable
834 UINT8 Checksum;
838 Checksum = AcpiUtChecksum (Subtable->Buffer, Subtable->Length);
839 *Sum = (UINT8) (*Sum + Checksum);
847 * PARAMETERS: ChecksumPointer - Where to return the checksum
851 * DESCRIPTION: Set checksum of the whole data table into the checksum field
859 UINT8 Checksum = 0;
863 DtWalkTableTree (AslGbl_RootTable, DtSum, NULL, &Checksum);
866 Checksum = (UINT8) (Checksum - OldSum);
868 /* Compute the final checksum */
870 Checksum = (UINT8) (0 - Checksum);
871 *ChecksumPointer = Checksum;