Searched refs:crc32 (Results 76 - 94 of 94) sorted by relevance

1234

/freebsd-11-stable/sys/contrib/zlib/
H A Dzlib.h1726 ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
1735 uLong crc = crc32(0L, Z_NULL, 0);
1738 crc = crc32(crc, buffer, length);
1746 Same as crc32(), but with a size_t length.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp195 return CRCHash == llvm::crc32(arrayRefFromStringRef(MB.get()->getBuffer()));
/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dtest_read_format_zip.c51 computed_crc = crc32(0, buf, fsize);
88 computed_crc = crc32(computed_crc, buf, bytes_read);
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_7zip.c530 if (crc32(0, (const unsigned char *)p + 12, 20)
655 zip->entry_crc32 = crc32(0, NULL, 0);
831 zip->entry_crc32 = crc32(zip->entry_crc32, *buff,
2807 zip->header_crc32 = crc32(zip->header_crc32, p, (unsigned)rbytes);
2841 if (crc32(0, (const unsigned char *)p + 12, 20)
H A Darchive_write_set_format_zip.c240 return crc32(crc, buff, (unsigned int)len);
1514 #define CRC32(c, b) (crc32(c ^ 0xffffffffUL, &b, 1) ^ 0xffffffffUL)
H A Darchive_read_support_format_rar5.c34 #include <zlib.h> /* crc32 */
2150 computed_crc = (uint32_t) crc32(0, p, (int) hdr_size);
2345 crc32(rar->file.calculated_crc32, p, to_read);
/freebsd-11-stable/sys/dev/usb/wlan/
H A Dif_upgt.c1561 uint32_t crc32; local
1628 crc32 = upgt_crc32_le(fw->data, fw->datasize);
1629 *((uint32_t *)(data_cmd->buf) ) = crc32;
/freebsd-11-stable/sys/dev/ioat/
H A Dioat.c1187 hw_desc = &ioat_get_descriptor(ioat, desc->id)->crc32;
1252 hw_desc = &ioat_get_descriptor(ioat, desc->id)->crc32;
/freebsd-11-stable/usr.sbin/lmcconfig/
H A Dlmcconfig.c2083 crc32(char *bufp, int len)
2133 srom[63] = crc32((char *)srom, 126) ^ 0xFFFFFFFFL;
2082 crc32(char *bufp, int len) function
/freebsd-11-stable/sys/fs/nandfs/
H A Dnandfs_subr.c537 comp_crc = crc32((uint8_t *)&super_root + off,
H A Dnandfs_segment.c305 crc_calc = crc32((uint8_t *)sr + crc_skip, NANDFS_SR_BYTES - crc_skip);
/freebsd-11-stable/usr.sbin/bhyve/
H A Drfb.c560 crc_p[x] = (uint32_t)crc32(crc_p[x],
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DCopyConfig.cpp544 llvm::crc32(arrayRefFromStringRef(Debug->getBuffer()));
/freebsd-11-stable/contrib/gdb/gdb/
H A Dremote.c169 static unsigned long crc32 (unsigned char *, int, unsigned int);
4780 /* Table used by the crc32 function to calcuate the checksum. */
4786 crc32 (unsigned char *buf, int len, unsigned int crc)
4868 host_crc = crc32 ((unsigned char *) sectdata, size, 0xffffffff);
4773 crc32 (unsigned char *buf, int len, unsigned int crc) function
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Decore_hsi_common.h2245 __le32 crc32 /* crc16 result */; member in struct:dmae_cmd
/freebsd-11-stable/contrib/sqlite3/
H A Dshell.c6076 u32 crc32; member in struct:ZipfileCDS
6112 u32 crc32; member in struct:ZipfileLFH
6485 pCDS->crc32 = zipfileRead32(aRead);
6522 pLFH->crc32 = zipfileRead32(aRead);
7234 zipfileWrite32(a, pCds->crc32);
7499 iCrc32 = crc32(0, aIn, nIn);
7568 pNew->cds.crc32 = iCrc32;
7639 zipfileWrite32(a, pCDS->crc32);
7730 "\"crc32\" : %u, "
7743 (u32)p->crc32, (u3
[all...]
/freebsd-11-stable/sys/netpfil/pf/
H A Dpf.c458 hv ^= crc32(&s->src, sizeof(s->src));
459 hv ^= crc32(&s->dst, sizeof(s->dst));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp401 return llvm::crc32(
577 "Calculating module crc32 %s with size %" PRIu64 " KiB",
584 // contents crc32 would be too much of luxury. Thus we will need
1110 // 4 bytes as it will be better than our own crc32.
/freebsd-11-stable/sys/dev/bxe/
H A Decore_hsi.h3803 uint32_t crc32 /* crc32 result */; member in struct:dmae_cmd

Completed in 360 milliseconds

1234