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

1 2 3 4 5

  /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
  /external/elfutils/0.153/libelf/
libelf_crc32.c 53 #define crc32 attribute_hidden __libelf_crc32 macro
56 #include "../lib/crc32.c"
  /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/rlz/lib/
crc32_wrapper.cc 9 #include "rlz/lib/crc32.h"
15 int Crc32(const unsigned char* buf, int length) {
16 return crc32(0L, buf, length);
19 bool Crc32(const char* text, int* crc) {
21 ASSERT_STRING("Crc32: crc is NULL.");
30 *crc = crc32(*crc, reinterpret_cast<const unsigned char*>(text + i), 1);
  /external/lzma/xz-embedded/
xz_stream.h 14 # include <linux/crc32.h>
15 # undef crc32 macro
  /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/libpng/contrib/libtests/
fakepng.c 3 #include <zlib.h> /* for crc32 */
23 crc = crc32(0, Z_NULL, 0);
24 put_uLong(crc32(crc, chunk, length));
  /external/chromium_org/courgette/
crc.cc 24 crc = crc32(0, buffer, size);
  /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/llvm/include/llvm/Support/
Compression.h 52 uint32_t crc32(StringRef Buffer);
  /external/elfutils/0.153/lib/
crc32_file.c 1 /* Compute CRC32 checksum of file contents.
84 *resp = crc32 (crc, mapped, st.st_size);
88 crc = crc32 (crc, mapped, mapsize);
101 crc = crc32 (crc, buffer, count);
Makefile.am 34 crc32.c crc32_file.c md5.c sha1.c \
  /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");
  /art/runtime/
zip_archive_test.cc 51 uint32_t computed_crc = crc32(0L, Z_NULL, 0);
61 computed_crc = crc32(computed_crc, buf, bytes_read);
  /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/libpng/contrib/tools/
png-fix-itxt.c 23 * Requires zlib (for crc32 and Z_NULL); build with
79 crc = crc32(0, Z_NULL, 0);
88 crc = crc32(crc, buf+4, (uInt)length+4);
108 crc = crc32(crc, buf+7+length, 1);
checksum-icc.c 11 * Generate crc32 and adler32 checksums of the given input files, used to
23 uLong c32 = crc32(0, NULL, 0);
40 c32 = crc32(c32, &b, 1);
68 printf("/* adler32, crc32, MD5[16], intent, date, length, file-name */\n");
  /external/chromium_org/base/
cpu_unittest.cc 54 __asm crc32 eax, eax;
89 __asm__ __volatile__("crc32 %%eax, %%eax\n" : : : "eax");
  /external/chromium_org/media/formats/mp2t/
ts_section_pat.cc 73 int crc32; local
74 RCHECK(bit_reader->ReadBits(32, &crc32));
  /external/libpng/contrib/pngminim/decoder/
makefile 30 # Zlib (minimal inflate requirements - crc32 is used by libpng)
32 ZSRCS = adler32$(C) crc32$(C) \
37 ZH = zlib.h crc32.h inffast.h inffixed.h \
49 ZOBJS = adler32$(O) crc32$(O) \
  /external/libpng/contrib/pngminim/encoder/
makefile 31 ZSRCS = adler32$(C) compress$(C) crc32$(C) deflate$(C) \
35 #ZH = zlib.h crc32.h deflate.h trees.h zutil.h
36 ZH = zlib.h crc32.h deflate.h trees.h zutil.h
50 ZOBJS = adler32$(O) compress$(O) crc32$(O) deflate$(O) \

Completed in 753 milliseconds

1 2 3 4 5