OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Checksum
(Results
1 - 20
of
20
) sorted by relevancy
/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/
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
));
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
...]
/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
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
...]
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
...]
/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/gnu-efi/dist/inc/
efiip.h
123
UINT16
Checksum
;
efipxebc.h
85
UINT16
Checksum
;
/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
;
acrestyp.h
383
UINT8
Checksum
;
actbl1.h
603
UINT8
Checksum
; /* To make sum of entire table == 0 */
/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/arch/i386/stand/pxeboot/
pxe.h
74
uint8_t
Checksum
; /*
checksum
pad */
/src/sys/dev/ic/
mpt_mpilib.h
3478
U32 Reserved_0100_Checksum; /* 04h */ /* obsolete
Checksum
*/
3562
U32
Checksum
; /* 1Ch */
3614
U32
Checksum
; /* 04h */
/src/sys/external/bsd/drm2/dist/drm/radeon/
atombios.h
1837
USHORT usStatus; //When use output: lower byte EDID
checksum
, high byte hardware status
4163
UCHAR ucChecksum; // a simple
Checksum
of the sum of whole structure equal to 0x0.
7925
UCHAR
Checksum
;
7938
UINT8
Checksum
; //0x9
/src/sys/external/bsd/drm2/dist/drm/amd/include/
atombios.h
2210
USHORT usStatus; //When use output: lower byte EDID
checksum
, high byte hardware status
4662
UCHAR ucChecksum; // a simple
Checksum
of the sum of whole structure equal to 0x0.
8672
UCHAR
CheckSum
[14];
9235
UCHAR
Checksum
;
9248
UINT8
Checksum
; //0x9
Completed in 61 milliseconds
Indexes created Sun Sep 21 20:09:37 GMT 2025