Searched refs:checksum (Results 76 - 100 of 116) sorted by relevance

12345

/u-boot/fs/erofs/
H A Derofs_fs.h64 __le32 checksum; /* crc32c(super_block) */ member in struct:erofs_super_block
H A Dinternal.h96 u32 checksum; member in struct:erofs_sb_info
/u-boot/arch/arm/mach-mvebu/
H A Dspl.c119 u8 checksum; /* 0x1F */ member in struct:kwbimage_main_hdr_v1
154 printf("ERROR: Invalid data checksum in kwbimage\n");
174 * Very basic check for image validity. We cannot check mhdr->checksum
/u-boot/drivers/remoteproc/
H A Dk3_system_controller.c54 * @checksum: Checksum for the entire message
59 u16 checksum; member in struct:k3_sysctrler_boot_notification_msg
143 /* ToDo: Verify checksum */
/u-boot/arch/x86/cpu/apollolake/
H A Dhostbridge.c300 /* (Re)calculate length and checksum */
302 header->checksum = table_compute_checksum((void *)dmar, header->length);
H A Dacpi.c159 header->checksum = table_compute_checksum(fadt, header->length);
/u-boot/arch/x86/cpu/baytrail/
H A Dacpi.c140 header->checksum = table_compute_checksum(fadt, header->length);
/u-boot/arch/x86/cpu/quark/
H A Dacpi.c135 header->checksum = table_compute_checksum(fadt, header->length);
/u-boot/arch/x86/include/asm/
H A Dme_common.h353 uint16_t *checksum);
/u-boot/examples/api/
H A Ddemo.c205 printf(" checksum\t= 0x%08x\n", sig->checksum);
/u-boot/arch/arm/mach-imx/
H A Dcmd_nandbcb.c472 fcb->checksum = calc_chksum((void *)fcb + 4, sizeof(*fcb) - 4);
1029 dbbt->checksum = 0;
1137 dbbt->checksum = 0;
1173 P1(checksum);
1234 P1(checksum);
/u-boot/include/acpi/
H A Dacpi_table.h41 u8 checksum; /* Checksum of the first 20 bytes */ member in struct:acpi_rsdp
56 volatile u8 checksum; /* To make sum of entire table == 0 */ member in struct:acpi_table_header
/u-boot/drivers/misc/
H A Dcros_ec_sandbox.c619 resp_hdr->checksum = 0;
620 resp_hdr->checksum = (uint8_t)
/u-boot/boot/
H A Dimage-android.c21 static ulong checksum(const unsigned char *buffer, ulong size) function
51 sum = checksum((unsigned char *)bootconfig_start_addr, bootconfig_size);
H A Dimage-pre-load.c102 info->sig_info.checksum = image_get_checksum_algo(info->sig_info.name);
/u-boot/test/lib/
H A Drsa.c149 info.checksum = image_get_checksum_algo("sha256,rsa2048");
183 info.checksum = image_get_checksum_algo("sha256,rsa2048");
/u-boot/include/
H A Dedid.h236 unsigned char checksum; member in struct:edid1_info
285 * Check checksum of a 128 bytes EDID data block
H A Dimage.h46 #include <u-boot/hash-checksum.h>
431 * checksum calculations into reasonable chunks.
1503 struct checksum_algo *checksum; /* Checksum algorithm information */ member in struct:image_sign_info
1535 int region_count, uint8_t *checksum);
1608 * image_get_checksum_algo() - Look up a checksum algorithm
1610 * @param full_name Name of algorithm in the form "checksum,crypto"
1618 * @param full_name Name of algorithm in the form "checksum,crypto"
/u-boot/lib/
H A DMakefile75 obj-$(CONFIG_HASH) += hash-checksum.o
/u-boot/lib/crypto/
H A Dx509_public_key.c22 #include <u-boot/hash-checksum.h>
/u-boot/tools/
H A DMakefile135 generated/lib/hash-checksum.o \
/u-boot/arch/x86/cpu/
H A Dirq.c313 /* Fix up the table checksum */
314 rt->checksum = table_compute_checksum(rt, rt->size);
/u-boot/drivers/net/
H A De1000.c874 * Shadow Ram will most likely contain an invalid checksum.
972 * e1000_update_eeprom_checksum_i210 - Update EEPROM checksum
975 * Updates the EEPROM checksum by reading/adding each word of the EEPROM
976 * up to the checksum. Then calculates the EEPROM checksum and writes the
982 uint16_t checksum = 0; local
1005 DEBUGOUT("EEPROM Read Error while updating checksum.\n");
1008 checksum += nvm_data;
1010 checksum = (uint16_t)EEPROM_SUM - checksum;
1041 uint16_t i, checksum, checksum_reg, *buf; local
[all...]
/u-boot/fs/fat/
H A Dfat_write.c401 __u8 counter = 0, checksum; local
404 /* Get short file name checksum value */
405 checksum = mkcksum((void *)shortname);
412 slotptr->alias_checksum = checksum;
/u-boot/drivers/video/sunxi/
H A Dsunxi_display.c216 printf("EDID block %d: checksum error%s\n",
695 u8 checksum = 0; local
719 checksum += avi_info_frame[i];
721 avi_info_frame[3] = 0x100 - checksum;

Completed in 316 milliseconds

12345