Searched defs:crc32 (Results 1 - 3 of 3) sorted by relevance
/ast/src/lib/libz/ |
H A D | crc32.c | 0 /* crc32.c -- compute the CRC-32 of a data stream 19 one thread to use crc32(). 157 /* write out CRC tables to crc32.h */ 161 out = fopen("crc32.h", "w"); 163 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n"); 164 fprintf(out, " * Generated automatically by crc32.c\n */\n\n"); 199 #include "crc32.h" 203 * This function can be used by asm versions of crc32() 219 unsigned long ZEXPORT crc32(crc, buf, len) function
|
H A D | zconf.h | 59 # define crc32 z_crc32 macro
|
/ast/src/cmd/INIT/ |
H A D | ratz.c | 997 /* crc32.h -- tables for rapid CRC calculation 998 * Generated automatically by crc32.c 1073 unsigned long ZEXPORT crc32(crc, buf, len) function 2594 /* check function to use adler32() for zlib or crc32() for gzip */ 2597 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len)) 2608 check = crc32(check, hbuf, 2); \ 2617 check = crc32(check, hbuf, 4); \ 2816 state->check = crc32(0L, Z_NULL, 0); 2912 state->check = crc32(state->check, next, copy); 2933 state->check = crc32(stat [all...] |
Completed in 29 milliseconds