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

1 2 3 4 5 6 7

  /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
  /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/protobuf/src/google/protobuf/compiler/
zip_writer.h 54 uint32 crc32; member in struct:google::protobuf::compiler::ZipWriter::FileInfo
zip_writer.cc 116 info.crc32 = ComputeCRC32(contents);
128 output.WriteLittleEndian32(info.crc32); // crc-32
148 uint32 crc32 = files_[i].crc32; local
159 output.WriteLittleEndian32(crc32); // crc-32
  /system/core/include/ziparchive/
zip_archive.h 57 // Crc32 value of this ZipEntry. This information might
60 uint32_t crc32; member in struct:ZipEntry
121 * It's important to note that |data->crc32|, |data->compLen| and
  /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
  /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
  /external/pixman/test/
matrix-test.c 76 uint32_t crc32 = 0; local
135 crc32 = compute_crc32 (crc32, &result_i, sizeof(result_i));
177 return crc32;
region-contains-test.c 82 compute_crc32_u32 (uint32_t crc32, uint32_t v)
92 return compute_crc32 (crc32, &v, sizeof (int32_t));
96 crc32_box32 (uint32_t crc32, pixman_box32_t *box)
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 = compute_crc32_u32 (crc32, box->y2)
112 uint32_t r, r1, r2, r3, r4, crc32; local
    [all...]
  /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

Completed in 735 milliseconds

1 2 3 4 5 6 7