Searched defs:crc32 (Results 26 - 50 of 65) sorted by relevance

123

/external/zlib/src/
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...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dsse4.asm18 crc32 eax, bl label
19 crc32 eax, bh label
20 crc32 eax, r9b label
21 crc32 eax, byte [0] label
22 crc32 eax, bx label
23 crc32 eax, word [0] label
24 crc32 eax, ebx label
25 crc32 eax, dword [0] label
27 crc32 r8d, bl label
28 ;crc32 r8
29 crc32 r8d, r9b label
30 crc32 r8d, byte [0] label
31 crc32 r8d, bx label
32 crc32 r8d, word [0] label
33 crc32 r8d, ebx label
34 crc32 r8d, dword [0] label
36 crc32 rax, bl label
38 crc32 rax, r9b label
39 crc32 rax, byte [0] label
40 crc32 rax, rbx label
41 crc32 rax, qword [0] label
[all...]
/external/fio/
H A Dverify.h12 VERIFY_CRC32, /* crc32 sum data blocks */
36 uint32_t crc32; member in struct:verify_header
55 uint32_t crc32; member in struct:vhdr_crc32
/external/freetype/src/gzip/
H A Dzconf.h36 # define crc32 z_crc32 macro
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_crc32.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( function
[all...]
H A Dzconf.h37 # define crc32 z_crc32 macro
H A Dzlib.h44 #define crc32 FPDFAPI_crc32 macro
620 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
860 recommended that a check value such as an adler32 or a crc32 be applied to
869 crc32 instead of an adler32.
1664 ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
1673 uLong crc = crc32(0L, Z_NULL, 0);
1676 crc = crc32(crc, buffer, length);
/external/pixman/test/
H A Daffine-test.c48 uint32_t crc32; local
301 crc32 = compute_crc32 (0, dstbuf, dst_stride * dst_height);
306 return crc32;
H A Dblitters-test.c80 /* Free random image, and optionally update crc32 based on its data */
86 uint32_t crc32 = 0; local
90 crc32 = compute_crc32_for_image (initcrc, img);
95 return crc32;
239 uint32_t crc32; local
377 crc32 = free_random_image (0, dst_img, dst_fmt);
388 return crc32;
H A Dcomposite-traps-test.c60 uint32_t crc32; local
239 crc32 = compute_crc32 (0, dst_bits, dst_stride * dst_height);
248 return crc32;
H A Dglyph-test.c222 uint32_t crc32 = 0; local
316 crc32 = compute_crc32_for_image (0, dest);
323 return crc32;
H A Dscaling-test.c80 uint32_t crc32; local
369 crc32 = compute_crc32 (0, dstbuf, dst_stride * dst_height);
375 return crc32;
/external/qemu/distrib/libsparse/src/
H A Dsparse_read.c102 uint32_t *crc32)
121 if (crc32) {
128 *crc32 = sparse_crc32(*crc32, copybuf, chunk);
139 int fd, unsigned int blocks, unsigned int block, uint32_t *crc32)
162 if (crc32) {
171 *crc32 = sparse_crc32(*crc32, copybuf, chunk);
181 unsigned int block __unused, uint32_t *crc32)
187 if (crc32) {
100 process_raw_chunk(struct sparse_file *s, unsigned int chunk_size, int fd, int64_t offset, unsigned int blocks, unsigned int block, uint32_t *crc32) argument
138 process_fill_chunk(struct sparse_file *s, unsigned int chunk_size, int fd, unsigned int blocks, unsigned int block, uint32_t *crc32) argument
179 process_skip_chunk(struct sparse_file *s, unsigned int chunk_size, int fd __unused, unsigned int blocks, unsigned int block __unused, uint32_t *crc32) argument
201 process_crc32_chunk(int fd, unsigned int chunk_size, uint32_t crc32) argument
280 uint32_t crc32 = 0; local
[all...]
H A Doutput_file.c82 uint32_t crc32; member in struct:output_file
392 out->crc32 = sparse_crc32(out->crc32, &fill_val, sizeof(uint32_t));
431 out->crc32 = sparse_crc32(out->crc32, data, len);
433 out->crc32 = sparse_crc32(out->crc32, out->zero_buf, zero_len);
457 out->ops->write(out, &out->crc32, 4);
550 out->crc32 = 0;
/external/zlib/src/contrib/delphi/
H A DZLib.pas202 {$L crc32.obj}
214 procedure crc32; external; procedure
/external/zlib/src/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
/external/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dzconf.h42 # define crc32 z_crc32 macro
/external/lzma/xz-embedded/
H A Dxz_dec_stream.c23 uint32_t crc32; member in struct:xz_dec_hash
288 s->block.hash.crc32 = xz_crc32(
290 sizeof(s->block.hash), s->block.hash.crc32);
347 s->index.hash.crc32 = xz_crc32(
350 s->index.hash.crc32);
/external/oprofile/libutil++/
H A Dbfd_support.cpp74 cverb << vbfd << " with crc32 = " << hex << file_crc << endl;
79 bool get_debug_link_info(bfd * ibfd, string & filename, unsigned long & crc32) argument
106 crc32 = bfd_get_32(ibfd,
301 unsigned long crc32; local
303 if (!get_debug_link_info(ibfd, basename, crc32))
317 << " with crc32 = " << hex << crc32 << endl;
319 if (separate_debug_file_exists(first_try, crc32, extra))
321 else if (separate_debug_file_exists(second_try, crc32, extra))
323 else if (separate_debug_file_exists(third_try, crc32, extr
[all...]
/external/chromium_org/third_party/zlib/
H A Dmozzconf.h91 #define crc32 MOZ_Z_crc32 macro
H A Dzconf.h36 # define crc32 z_crc32 macro
/external/libpng/contrib/libtests/
H A Dtarith.c58 #define crc32(crc, pp, s) (crc) macro
/external/pdfium/core/include/thirdparties/zlib/
H A Dzconf.h37 # define crc32 z_crc32 macro
H A Dzlib.h40 #define crc32 FPDFAPI_crc32 macro
616 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
856 recommended that a check value such as an adler32 or a crc32 be applied to
865 crc32 instead of an adler32.
1660 ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
1669 uLong crc = crc32(0L, Z_NULL, 0);
1672 crc = crc32(crc, buffer, length);
/external/qemu/distrib/zlib-1.2.8/
H A Dzconf.h37 # define crc32 z_crc32 macro

Completed in 379 milliseconds

123