HomeSort by relevance Sort by last modified time
    Searched defs:crc32 (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
sse4-err.asm 2 crc32 r8d, bh ; error label
3 crc32 rax, bh ; error label
sse4.asm 18 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 r8d, bh ; erro
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/elfutils/0.153/libdwfl/
libdwfl_crc32.c 53 #define crc32 attribute_hidden __libdwfl_crc32 macro
56 #include "../lib/crc32.c"
libdwfl_crc32_file.c 54 #define crc32 __libdwfl_crc32 macro
gzip.c 82 # define crc32 loser_crc32 macro
  /external/elfutils/0.153/libelf/
libelf_crc32.c 53 #define crc32 attribute_hidden __libelf_crc32 macro
56 #include "../lib/crc32.c"
  /external/elfutils/0.153/lib/
crc32.c 111 crc32 (uint32_t crc, unsigned char *buf, size_t len) function
  /external/liblzf/
crc32.h 4 /* 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/
syntax-err.asm 1 global crc32
2 crc32: resd 1 label
  /external/chromium_org/third_party/smhasher/src/
crc.cpp 4 * 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/
Compression.cpp 72 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/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
zip_writer.h 84 uint32 crc32; member in struct:google::protobuf::compiler::ZipWriter::FileInfo
zip_writer.cc 146 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/liblzf/cs/
CLZF.cs 49 // CRC32 data & function
106 public UInt32 crc32(UInt32 OldCRC,byte NewData) method in class:LZF.NET.CLZF
  /external/chromium_org/chrome/browser/chromeos/login/
hwid_checker.cc 22 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/lzma/xz-embedded/
xz_stream.h 14 # include <linux/crc32.h>
15 # undef crc32 macro
xz_dec_stream.c 23 uint32_t crc32; member in struct:xz_dec_hash
52 /* CRC32 or CRC64 value in Block or CRC32 value in Index */
55 /* CRC32 value in Block or Index */
222 * is normally uint64_t). Update the CRC32 or CRC64 value if presence of
223 * the CRC32 or CRC64 field was indicated in Stream Header.
288 s->block.hash.crc32 = xz_crc32(
290 sizeof(s->block.hash), s->block.hash.crc32);
298 /* Update the Index size and the CRC32 value. */
308 * fields from the Index field. That is, Index Padding and CRC32 are no
    [all...]
  /external/chromium_org/media/formats/mp2t/
ts_section_pat.cc 73 int crc32; local
74 RCHECK(bit_reader->ReadBits(32, &crc32));
ts_section_pmt.cc 106 int crc32; local
107 RCHECK(bit_reader->ReadBits(32, &crc32));
  /external/elfutils/0.153/libdw/
dwarf_begin_elf.c 66 # define crc32 loser_crc32 macro
68 # undef crc32 macro
  /bootable/recovery/minzip/
Zip.h 40 long crc32; member in struct:ZipEntry
134 return pEntry->crc32;
  /external/chromium_org/third_party/zlib/
crc32.c 0 /* 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/fio/
verify.h 12 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/
zconf.h 36 # define crc32 z_crc32 macro
  /external/oprofile/libutil++/
bfd_support.cpp 74 cverb << vbfd << " with crc32 = " << hex << file_crc << endl;
79 bool get_debug_link_info(bfd * ibfd, string & filename, unsigned long & crc32)
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, extra)
    [all...]

Completed in 567 milliseconds

1 2