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

123

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dsse4-err.asm2 crc32 r8d, bh ; error label
3 crc32 rax, bh ; error label
/external/elfutils/0.153/libdwfl/
H A Dlibdwfl_crc32.c53 #define crc32 attribute_hidden __libdwfl_crc32 macro
56 #include "../lib/crc32.c"
H A Dlibdwfl_crc32_file.c54 #define crc32 __libdwfl_crc32 macro
H A Dgzip.c82 # define crc32 loser_crc32 macro
/external/elfutils/0.153/libelf/
H A Dlibelf_crc32.c53 #define crc32 attribute_hidden __libelf_crc32 macro
56 #include "../lib/crc32.c"
/external/liblzf/
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
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/
H A Dsyntax-err.asm1 global crc32
2 crc32: resd 1 label
/external/elfutils/0.153/lib/
H A Dcrc32.c111 crc32 (uint32_t crc, unsigned char *buf, size_t len) function
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dzip_writer.h84 uint32 crc32; member in struct:google::protobuf::compiler::ZipWriter::FileInfo
H A Dzip_writer.cc146 info.crc32 = ComputeCRC32(contents);
158 output.WriteLittleEndian32(info.crc32); // crc-32
178 uint32 crc32 = files_[i].crc32; local
189 output.WriteLittleEndian32(crc32); // crc-32
/external/chromium_org/third_party/smhasher/src/
H A Dcrc.cpp4 * This file is derived from crc32.c from the zlib-1.1.3 distribution
8 /* crc32.c -- compute the CRC-32 of a data stream
81 void crc32 ( const void * key, int len, uint32_t seed, void * out ) function
/external/llvm/lib/Support/
H A DCompression.cpp72 uint32_t zlib::crc32(StringRef Buffer) { function in class:zlib
73 return ::crc32(0, (const Bytef *)Buffer.data(), Buffer.size());
88 uint32_t zlib::crc32(StringRef Buffer) {
89 llvm_unreachable("zlib::crc32 is unavailable");
/external/protobuf/src/google/protobuf/compiler/
H A Dzip_writer.h54 uint32 crc32; member in struct:google::protobuf::compiler::ZipWriter::FileInfo
H A Dzip_writer.cc116 info.crc32 = ComputeCRC32(contents);
128 output.WriteLittleEndian32(info.crc32); // crc-32
148 uint32 crc32 = files_[i].crc32; local
159 output.WriteLittleEndian32(crc32); // crc-32
/external/lzma/xz-embedded/
H A Dxz_stream.h14 # include <linux/crc32.h>
15 # undef crc32 macro
/external/zlib/src/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);
/external/chromium_org/chrome/browser/chromeos/login/
H A Dhwid_checker.cc22 return static_cast<unsigned>(crc32(
29 unsigned crc32 = CalculateCRC32(data); local
33 snprintf(checksum, 5, "%04u", crc32 % 10000);
52 unsigned crc32 = CalculateCRC32(data); local
56 checksum += base32_alphabet[(crc32 >> 5) & 0x1f];
57 checksum += base32_alphabet[crc32 & 0x1f];
82 unsigned crc32 = CalculateCRC32(data); local
85 checksum += base8_alphabet[(crc32 >> 5) & 0x7];
86 checksum += base32_alphabet[crc32 & 0x1f];
/external/chromium_org/media/formats/mp2t/
H A Dts_section_pat.cc73 int crc32; local
74 RCHECK(bit_reader->ReadBits(32, &crc32));
H A Dts_section_pmt.cc106 int crc32; local
107 RCHECK(bit_reader->ReadBits(32, &crc32));
/external/elfutils/0.153/libdw/
H A Ddwarf_begin_elf.c66 # define crc32 loser_crc32 macro
68 # undef crc32 macro
/external/liblzf/cs/
H A DCLZF.cs106 public UInt32 crc32(UInt32 OldCRC,byte NewData) method in class:LZF.NET.CLZF
/external/chromium_org/third_party/zlib/
H A Dcrc32.c0 /* crc32.c -- compute the CRC-32 of a data stream
19 one thread to use crc32().
159 /* write out CRC tables to crc32.h */
163 out = fopen("crc32.h", "w");
165 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
166 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
201 #include "crc32.h"
205 * This function can be used by asm versions of crc32()
221 unsigned long ZEXPORT crc32(crc, buf, len) function
/external/pixman/test/
H A Dmatrix-test.c76 uint32_t crc32 = 0; local
135 crc32 = compute_crc32 (crc32, &result_i, sizeof(result_i));
177 return crc32;
H A Dregion-contains-test.c82 compute_crc32_u32 (uint32_t crc32, uint32_t v) argument
92 return compute_crc32 (crc32, &v, sizeof (int32_t));
96 crc32_box32 (uint32_t crc32, pixman_box32_t *box) argument
98 crc32 = compute_crc32_u32 (crc32, box->x1);
99 crc32 = compute_crc32_u32 (crc32, box->y1);
100 crc32 = compute_crc32_u32 (crc32, box->x2);
101 crc32
112 uint32_t r, r1, r2, r3, r4, crc32; local
[all...]
/external/qemu/distrib/zlib-1.2.8/
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...]

Completed in 398 milliseconds

123