Searched defs:crc32 (Results 1 - 12 of 12) sorted by relevance

/illumos-gate/usr/src/boot/sys/boot/common/
H A Dcrc32.c50 #include "crc32.h"
99 crc32(const void *buf, size_t size) function
/illumos-gate/usr/src/uts/common/os/
H A Dsctp_crc32.c127 sctp_crc32(uint32_t crc32, const uint8_t *buf, int len) argument
136 sctp_crc_byte(&crc32, buf, rem);
142 sctp_crc_word(&crc32, (const uint32_t *)buf, len / 4);
147 sctp_crc_byte(&crc32, buf + len - rem, rem);
149 return (crc32);
H A Dip_cksum.c387 uint32_t crc32; local
390 crc32 = 0xFFFFFFFF;
392 crc32 = sctp_crc32(crc32, p, mp->b_wptr - p);
394 crc32 = sctp_crc32(crc32, mp->b_rptr, MBLKL(mp));
398 crc32 = ~crc32;
400 return (crc32);
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dgpt.h37 grub_uint32_t crc32; member in struct:grub_gpt_header
/illumos-gate/usr/src/uts/common/zmod/
H A Dcrc32.c6 /* crc32.c -- compute the CRC-32 of a data stream
24 one thread to use crc32().
162 /* write out CRC tables to crc32.h */
166 out = fopen("crc32.h", "w");
168 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
169 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
204 #include "crc32.h"
208 * This function can be used by asm versions of crc32()
224 unsigned long ZEXPORT crc32(crc, buf, len) function
H A Dzconf.h94 #define crc32 z_crc32 macro
/illumos-gate/usr/src/boot/lib/libz/
H A Dcrc32.c0 /* crc32.c -- compute the CRC-32 of a data stream
19 one thread to use crc32().
21 DYNAMIC_CRC_TABLE and MAKECRCH can be #defined to write out crc32.h.
141 /* write out CRC tables to crc32.h */
145 out = fopen("crc32.h", "w");
147 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
148 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
184 #include "crc32.h"
188 * This function can be used by asm versions of crc32()
204 unsigned long ZEXPORT crc32(cr function
[all...]
H A Dzconf.h37 # define crc32 z_crc32 macro
/illumos-gate/usr/src/uts/common/io/nxge/
H A Dnxge_fflp_hash.c255 nxge_crc32c(uint32_t crc32, const uint8_t *buf, int len) argument
264 nxge_crc32c_byte(&crc32, buf, rem);
269 nxge_crc32c_word(&crc32, (const uint32_t *) buf, len / 4);
273 nxge_crc32c_byte(&crc32, buf + len - rem, rem);
275 return (crc32);
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/
H A Dlm.h119 u32_t crc32 ; // crc32 on (pattern & mask) member in struct:_lm_nwuf_pattern_t
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.h120 #define crc32 z_crc32 macro
1150 /* ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); */
1158 * uLong crc = crc32(0L, Z_NULL, 0);
1161 * crc = crc32(crc, buffer, length);
1198 * crc32()
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/
H A D5710_hsi.h259 u32_t crc32 /* crc32 result */; member in struct:dmae_cmd

Completed in 259 milliseconds