| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/ |
| IPDBSourceFile.cpp | 28 std::string Checksum = getChecksum(); 29 for (uint8_t c : Checksum) 32 OS << "No checksum";
|
| /src/sys/external/bsd/acpica/dist/utilities/ |
| utcksum.c | 66 * exception on bad checksum. 78 UINT8 Checksum; 83 * They are the odd tables, have no standard ACPI header and no checksum 91 /* Compute the checksum on the table */ 94 Checksum = AcpiUtGenerateChecksum (ACPI_CAST_PTR (UINT8, Table), Length, Table->Checksum); 96 /* Computed checksum matches table? */ 98 if (Checksum != Table->Checksum) 101 "Incorrect checksum in table [%4.4s] - 0x%2.2X, [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/ |
| NativeSourceFile.h | 24 const codeview::FileChecksumEntry &Checksum); 36 const codeview::FileChecksumEntry Checksum;
|
| /src/sys/external/bsd/acpica/dist/common/ |
| dmtables.c | 150 UINT8 Checksum; 193 /* Print and validate the table checksum */ 195 AcpiOsPrintf ("\n * Checksum 0x%2.2X", Table->Checksum); 197 Checksum = AcpiUtChecksum (ACPI_CAST_PTR (UINT8, Table), Table->Length); 198 if (Checksum) 200 AcpiOsPrintf (" **** Incorrect checksum, should be 0x%2.2X", 201 (UINT8) (Table->Checksum - Checksum));
|
| dmtbdump.c | 258 UINT8 Checksum; 270 /* Validate the first checksum */ 272 Checksum = AcpiUtGenerateChecksum (Rsdp, sizeof (ACPI_RSDP_COMMON), 273 Rsdp->Checksum); 274 if (Checksum != Rsdp->Checksum) 276 AcpiOsPrintf ("/* Incorrect Checksum above, should be 0x%2.2X */\n", 277 Checksum); 291 /* Validate the extended checksum over entire RSDP */ 293 Checksum = AcpiUtGenerateChecksum (Rsdp, sizeof (ACPI_TABLE_RSDP) [all...] |
| /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>
|
| 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/external/bsd/acpica/dist/compiler/ |
| aslcodegen.c | 503 /* Table length. Checksum zero for now, will rewrite later */ 553 AslGbl_TableHeader.Checksum = 0; 571 * DESCRIPTION: Complete the ACPI table by calculating the checksum and 584 UINT8 Checksum; 587 /* Calculate the checksum over the entire definition block */ 605 Checksum = (UINT8) (0 - Sum); 607 DbgPrint (ASL_DEBUG_OUTPUT, "Computed checksum = %X\n", Checksum); 609 /* Re-write the checksum byte */ 612 ACPI_CDAT_OFFSET (Checksum)); [all...] |
| dtutils.c | 714 * ReturnValue - Store the checksum of subtable 718 * DESCRIPTION: Get the checksum of subtable 728 UINT8 Checksum; 732 Checksum = AcpiUtChecksum (Subtable->Buffer, Subtable->Length); 733 *Sum = (UINT8) (*Sum + Checksum); 741 * PARAMETERS: ChecksumPointer - Where to return the checksum 745 * DESCRIPTION: Set checksum of the whole data table into the checksum field 753 UINT8 Checksum = 0; 757 DtWalkTableTree (AslGbl_RootTable, DtSum, NULL, &Checksum); [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
| DebugChecksumsSubsection.h | 33 FileChecksumKind Kind; // The type of checksum. 34 ArrayRef<uint8_t> Checksum; // The bytes of the checksum.
|
| /src/external/gpl3/binutils/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>
|
| 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/external/gpl3/binutils.old/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>
|
| 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/external/gpl3/gdb/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>
|
| 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/external/gpl3/gdb.old/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>
|
| 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/external/bsd/acpica/dist/tools/acpibin/ |
| abcompare.c | 107 * PARAMETERS: Buffer - Buffer to checksum 110 * RETURNS 8 bit checksum of buffer 112 * DESCRIPTION: Computes an 8 bit checksum of the buffer(length) and returns it. 164 printf ("Checksum : %2.2X\n", Header->Checksum); 184 printf ("Checksum %8.2X : %2.2X\n", Header->Checksum, Header2->Checksum); 239 * DESCRIPTION: Compute proper checksum for an ACPI table 249 UINT8 Checksum; [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| TarWriter.cpp | 42 char Checksum[8]; 87 // Computes a checksum for a tar header. 89 // Before computing a checksum, checksum field must be 91 memset(Hdr.Checksum, ' ', sizeof(Hdr.Checksum)); 93 // Compute a checksum and set it to the checksum field. 97 snprintf(Hdr.Checksum, sizeof(Hdr.Checksum), "%06o", Chksum) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
| MCCodeView.h | 204 /// Emits the file checksum substream. 207 /// Emits the offset into the checksum table of the given file number. 236 ArrayRef<uint8_t> Checksum; 238 // Checksum offset stored as a symbol because it might be requested 256 /// Indicate whether we have already laid out the checksum table addresses or
|
| MCDwarf.h | 65 /// The MD5 checksum, if there is one. Non-owning pointer to data allocated 67 Optional<MD5::MD5Result> Checksum; 235 Optional<MD5::MD5Result> Checksum, 259 Optional<MD5::MD5Result> Checksum, 264 RootFile.Checksum = Checksum; 266 trackMD5Usage(Checksum.hasValue()); 289 Optional<MD5::MD5Result> Checksum, 293 Header.setRootFile(Directory, FileName, Checksum, Source); 297 Optional<MD5::MD5Result> Checksum, uint16_t DwarfVersion [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/ |
| DWARFDebugLine.h | 41 MD5::MD5Result Checksum; 54 /// For v5, whether filename entries provide an MD5 checksum.
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/ |
| GCOV.h | 133 // r173147: split checksum into cfg checksum and line checksum. 203 uint32_t Checksum = 0;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/ |
| Minidump.h | 42 support::ulittle32_t Checksum; 206 support::ulittle32_t Checksum;
|