Home
last modified time | relevance | path

Searched refs:crc32_no_comp (Results 1 – 7 of 7) sorted by relevance

/external/u-boot/fs/jffs2/
Djffs2_private.h45 u32 crc = crc32_no_comp(0, (unsigned char *)node, sizeof(struct jffs2_unknown_node) - 4); in hdr_crc()
48 u32 crc = crc32_no_comp(~0, (unsigned char *)node, sizeof(struct jffs2_unknown_node) - 4); in hdr_crc()
62 …if (node->node_crc != crc32_no_comp(0, (unsigned char *)node, sizeof(struct jffs2_raw_dirent) - 8)… in dirent_crc()
72 if (node->name_crc != crc32_no_comp(0, (unsigned char *)&(node->name), node->nsize)) { in dirent_name_crc()
82 …if (node->node_crc != crc32_no_comp(0, (unsigned char *)node, sizeof(struct jffs2_raw_inode) - 8))… in inode_crc()
92 if (node->data_crc != crc32_no_comp(0, (unsigned char *) in data_crc()
Djffs2_nand_private.h57 u32 crc = crc32_no_comp(0, (unsigned char *)node, sizeof(struct jffs2_unknown_node) - 4); in hdr_crc()
60 u32 crc = crc32_no_comp(~0, (unsigned char *)node, sizeof(struct jffs2_unknown_node) - 4); in hdr_crc()
74 …if (node->node_crc != crc32_no_comp(0, (unsigned char *)node, sizeof(struct jffs2_raw_dirent) - 8)… in dirent_crc()
84 if (node->name_crc != crc32_no_comp(0, (unsigned char *)&(node->name), node->nsize)) { in dirent_name_crc()
94 …if (node->node_crc != crc32_no_comp(0, (unsigned char *)node, sizeof(struct jffs2_raw_inode) - 8))… in inode_crc()
Djffs2_1pass.c1349 crc = crc32_no_comp(0, (uchar *)&crcnode, sizeof(crcnode)-4); in jffs2_sum_scan_sumnode()
1362 crc = crc32_no_comp(0, (uchar *)summary, in jffs2_sum_scan_sumnode()
1370 crc = crc32_no_comp(0, (uchar *)summary->sum, in jffs2_sum_scan_sumnode()
/external/u-boot/board/theobroma-systems/puma_rk3399/
Dpuma-rk3399.c176 serialno = crc32_no_comp(0, low, 8); in setup_serial()
177 serialno |= (u64)crc32_no_comp(serialno, high, 8) << 32; in setup_serial()
/external/u-boot/include/u-boot/
Dcrc.h17 uint32_t crc32_no_comp (uint32_t, const unsigned char *, uint);
/external/u-boot/lib/
Dcrc32.c179 uint32_t ZEXPORT crc32_no_comp(uint32_t crc, const Bytef *buf, uInt len) in crc32_no_comp() function
223 return crc32_no_comp(crc ^ 0xffffffffL, p, len) ^ 0xffffffffL; in crc32()
/external/u-boot/drivers/net/fm/
Dfdt.c64 if (crc != crc32_no_comp(0, (void *)fmanfw, length)) { in fdt_fixup_fman_firmware()