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

/vbox/src/libs/liblzf-3.4/
H A Dcrc32.h4 /* crc32 0xdebb20e3 table and supplementary functions. */
62 #define crc32(crc,byte) (crc_32_tab[(u8)(crc) ^ (u8)(byte)] ^ ((crc) >> 8)) macro
/vbox/src/VBox/Devices/PC/ipxe/src/tests/
H A Dcrc32_test.c48 #include <ipxe/crc32.h>
63 uint32_t crc32; member in struct:crc32_test
81 .crc32 = CRC32, \
90 uint32_t crc32; \
91 crc32 = crc32_le ( (test)->seed, (test)->data, (test)->len ); \
92 ok ( crc32 == (test)->crc32 ); \
123 .name = "crc32",
/vbox/src/libs/zlib-1.2.6/contrib/dotzlib/DotZLib/
H A DChecksumImpl.cs109 private static extern uint crc32(uint crc, int data, uint length); method in class:DotZLib.CRC32Checksum
140 _current = crc32(_current, hData.AddrOfPinnedObject().ToInt32()+offset, (uint)count);
/vbox/src/libs/liblzf-3.4/cs/
H A DCLZF.cs106 public UInt32 crc32(UInt32 OldCRC,byte NewData) method in class:LZF.NET.CLZF
/vbox/src/libs/zlib-1.2.6/
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.
163 /* write out CRC tables to crc32.h */
167 out = fopen("crc32.h", "w");
169 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
170 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
206 #include "crc32.h"
210 * This function can be used by asm versions of crc32()
226 unsigned long ZEXPORT crc32(cr function
[all...]
H A Dzconf.h42 # define crc32 vboxzlib_crc32 macro
127 # define crc32 z_crc32 macro
/vbox/src/libs/zlib-1.2.6/contrib/delphi/
H A DZLib.pas202 {$L crc32.obj}
214 procedure crc32; external; procedure
/vbox/src/libs/zlib-1.2.6/contrib/pascal/
H A Dzlibpas.pas156 function crc32(crc: LongInt; const buf: PChar; len: Integer): LongInt; function
178 {$L crc32.obj}
193 function crc32; external; function
/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A Dunzip.c151 uLong crc32; /* crc32 of all data uncompressed */ member in struct:__anon17361
152 uLong crc32_wait; /* crc32 we must obtain after decompress all */
1541 pfile_in_zip_read_info->crc32=0;
1784 pfile_in_zip_read_info->crc32 = crc32(pfile_in_zip_read_info->crc32,
1821 pfile_in_zip_read_info->crc32 = crc32(pfile_in_zip_read_info->crc32,bufBefor
[all...]
H A Dzip.c152 uLong crc32; member in struct:__anon17363
1125 zi->ci.crc32 = 0;
1414 zi->ci.crc32 = crc32(zi->ci.crc32,buf,(uInt)len);
1509 extern int ZEXPORT zipCloseFileInZipRaw (zipFile file, uLong uncompressed_size, uLong crc32) argument
1511 return zipCloseFileInZipRaw64 (file, uncompressed_size, crc32);
1514 extern int ZEXPORT zipCloseFileInZipRaw64 (zipFile file, ZPOS64_T uncompressed_size, uLong crc32) argument
1602 crc32 = (uLong)zi->ci.crc32;
[all...]

Completed in 91 milliseconds