/src/sys/external/bsd/acpica/dist/utilities/ |
utcksum.c | 174 * exception on bad checksum. 186 UINT8 Checksum; 191 * They are the odd tables, have no standard ACPI header and no checksum 199 /* Compute the checksum on the table */ 202 Checksum = AcpiUtGenerateChecksum (ACPI_CAST_PTR (UINT8, Table), Length, Table->Checksum); 204 /* Computed checksum matches table? */ 206 if (Checksum != Table->Checksum) 209 "Incorrect checksum in table [%4.4s] - 0x%2.2X, [all...] |
/src/sys/external/bsd/acpica/dist/common/ |
dmtbdump.c | 366 UINT8 Checksum; 378 /* Validate the first checksum */ 380 Checksum = AcpiUtGenerateChecksum (Rsdp, sizeof (ACPI_RSDP_COMMON), 381 Rsdp->Checksum); 382 if (Checksum != Rsdp->Checksum) 384 AcpiOsPrintf ("/* Incorrect Checksum above, should be 0x%2.2X */\n", 385 Checksum); 399 /* Validate the extended checksum over entire RSDP */ 401 Checksum = AcpiUtGenerateChecksum (Rsdp, sizeof (ACPI_TABLE_RSDP) [all...] |
dmtables.c | 258 UINT8 Checksum; 301 /* Print and validate the table checksum */ 303 AcpiOsPrintf ("\n * Checksum 0x%2.2X", Table->Checksum); 305 Checksum = AcpiUtChecksum (ACPI_CAST_PTR (UINT8, Table), Table->Length); 306 if (Checksum) 308 AcpiOsPrintf (" **** Incorrect checksum, should be 0x%2.2X", 309 (UINT8) (Table->Checksum - Checksum));
|
dmtbinfo.c | 204 {ACPI_DMT_CHKSUM, ACPI_HDR_OFFSET (Checksum), "Checksum", 0}, 240 {ACPI_DMT_UINT8, ACPI_RSDP_OFFSET (Checksum), "Checksum", 0}, 253 {ACPI_DMT_UINT8, ACPI_RSDP_OFFSET (ExtendedChecksum), "Extended Checksum", 0},
|
/src/sys/external/bsd/acpica/dist/tools/acpibin/ |
abcompare.c | 215 * PARAMETERS: Buffer - Buffer to checksum 218 * RETURNS 8 bit checksum of buffer 220 * DESCRIPTION: Computes an 8 bit checksum of the buffer(length) and returns it. 272 printf ("Checksum : %2.2X\n", Header->Checksum); 292 printf ("Checksum %8.2X : %2.2X\n", Header->Checksum, Header2->Checksum); 347 * DESCRIPTION: Compute proper checksum for an ACPI table 357 UINT8 Checksum; [all...] |
/src/sys/external/bsd/acpica/dist/compiler/ |
dtutils.c | 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); [all...] |
aslcodegen.c | 611 /* Table length. Checksum zero for now, will rewrite later */ 661 AslGbl_TableHeader.Checksum = 0; 679 * DESCRIPTION: Complete the ACPI table by calculating the checksum and 692 UINT8 Checksum; 695 /* Calculate the checksum over the entire definition block */ 713 Checksum = (UINT8) (0 - Sum); 715 DbgPrint (ASL_DEBUG_OUTPUT, "Computed checksum = %X\n", Checksum); 717 /* Re-write the checksum byte */ 720 ACPI_CDAT_OFFSET (Checksum)); [all...] |
dttable.c | 192 DtSetTableChecksum (&Rsdp->Checksum); 207 /* Set length and extended checksum for entire RSDP */
|
dtcompile.c | 485 * Set the overall table length and the table checksum. 487 * the table length and checksum) is in AslGbl_RootTable->Buffer. 490 DtSetTableChecksum (&ACPI_CAST_PTR (ACPI_TABLE_CDAT, AslGbl_RootTable->Buffer)->Checksum); 562 /* Set the final table length and then the checksum */ 567 DtSetTableChecksum (&AcpiTableHeader->Checksum);
|
/src/sys/external/bsd/acpica/dist/tools/acpiexec/ |
aetables.c | 267 /* Set the checksum, must set to zero first */ 269 Header->Checksum = 0; 270 Header->Checksum = (UINT8) -AcpiUtChecksum ( 422 LocalRSDP.Checksum = 0; 423 LocalRSDP.Checksum = (UINT8) -AcpiUtChecksum ( 446 * addresses as well as the checksum 471 /* Complete the external FADT with the checksum */ 473 ExternalFadt->Header.Checksum = 0; 474 ExternalFadt->Header.Checksum = (UINT8) -AcpiUtChecksum ( 553 LocalTEST.Checksum = 0 [all...] |
aetables.h | 529 [009h 0009 1] Checksum : 14 561 [0001] Checksum : 9B 575 [001] Checksum : 9B
|
/src/sys/arch/ia64/stand/ia64/ski/ |
acpi_stub.c | 83 0, /* XXX checksum. */ 150 0, /* XXX checksum. */ 162 0, /* XXX checksum. */ 168 0, /* XXX Extended checksum. */ 189 cksum(&acpi_root, 20, &acpi_root.Checksum); 193 cksum(&xsdt, sizeof(xsdt), &xsdt.Header.Checksum);
|
/src/sys/external/bsd/acpica/dist/tables/ |
tbutils.c | 236 /* Compare original length and checksum to current values */ 239 AcpiGbl_OriginalDsdtHeader.Checksum != AcpiGbl_DSDT->Checksum) 251 AcpiGbl_OriginalDsdtHeader.Checksum = AcpiGbl_DSDT->Checksum; 473 /* Validate the root table checksum */
|
/src/sys/external/bsd/acpica/dist/tools/examples/ |
extables.c | 317 Rsdp->Checksum = 0; 318 Rsdp->Checksum = (UINT8) -AcpiUtChecksum ( 321 Rsdt->Header.Checksum = 0; 322 Rsdt->Header.Checksum = (UINT8) -AcpiUtChecksum ( 325 Xsdt->Header.Checksum = 0; 326 Xsdt->Header.Checksum = (UINT8) -AcpiUtChecksum ( 329 Fadt->Header.Checksum = 0; 330 Fadt->Header.Checksum = (UINT8) -AcpiUtChecksum ( 362 [0001] Checksum : 43 368 [0001] Extended Checksum : D [all...] |
/src/sys/external/bsd/acpica/dist/include/ |
actbl.h | 219 UINT8 Checksum; /* To make sum of entire table == 0 */ 260 UINT8 Checksum; /* ACPI 1.0 checksum */ 266 UINT8 ExtendedChecksum; /* Checksum of entire table (ACPI 2.0+) */ 276 UINT8 Checksum;
|
amlresrc.h | 354 UINT8 Checksum;
|
/src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
CodecBase.cs | 112 /// Gets the checksum of the data that has been added so far
114 public uint Checksum { get { return _checksum; } }
188 /// Updates the running checksum property
190 /// <param name="newSum">The new checksum value</param>
|
UnitTests.cs | 206 adler1 = def.Checksum;
236 adler2 = inf.Checksum;
|
DotZLib.cs | 112 /// Declares methods and properties that enables a running checksum to be calculated
117 /// Gets the current value of the checksum
122 /// Clears the current checksum to 0
127 /// Updates the current checksum with an array of bytes
129 /// <param name="data">The data to update the checksum with</param>
133 /// Updates the current checksum with part of an array of bytes
135 /// <param name="data">The data to update the checksum with</param>
144 /// Updates the current checksum with the data from a string
146 /// <param name="data">The string to update the checksum with</param>
151 /// Updates the current checksum with the data from a string, using a specific encoding [all...] |
/src/sys/arch/ibmnws/include/ |
pnp.h | 215 #define S15_Packet 0x78 /* End of resource (w/o checksum) */ 216 #define S15_Packet_checksum 0x79 /* End of resource (w/ checksum) */ 457 unsigned char Checksum; 582 unsigned char Check; /* optional - checksum */
|
/src/sys/arch/prep/include/ |
pnp.h | 215 #define S15_Packet 0x78 /* End of resource (w/o checksum) */ 216 #define S15_Packet_checksum 0x79 /* End of resource (w/ checksum) */ 457 unsigned char Checksum; 607 unsigned char Check; /* optional - checksum */
|
/src/sys/external/bsd/gnu-efi/dist/inc/ |
efipxebc.h | 85 UINT16 Checksum;
|
efiip.h | 123 UINT16 Checksum;
|
/src/sys/arch/mac68k/obio/ |
iwm.s | 643 * Understand and document the checksum algorithm! 734 moveq #0,%d5 | Clear checksum registers 852 * Next read checksum bytes 872 cmpb %d2,%d5 | Compare first checksum to %D5 873 bne rsBadCkSum | Fault! (Checksum) 884 cmpb %d2,%d6 | Compare second checksum to %D6 885 bne rsBadCkSum | Fault! (Checksum) 895 cmpb %d1,%d7 | Compare third checksum to %D7 896 beq rsLdOut | Fault! (Checksum) 899 moveq #badDCkSum,%d0 | Bad data mark checksum [all...] |
/src/sys/arch/i386/stand/pxeboot/ |
pxe.h | 74 uint8_t Checksum; /* checksum pad */
|