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

1 2 3 4 5 6

  /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/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/libelf/
libelf_crc32.c 53 #define crc32 attribute_hidden __libelf_crc32 macro
56 #include "../lib/crc32.c"
  /external/elfutils/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/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
  /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/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
  /external/qemu/distrib/zlib-1.2.3/
crc32.c 0 /* crc32.c -- compute the CRC-32 of a data stream
19 one thread to use crc32().
157 /* write out CRC tables to crc32.h */
161 out = fopen("crc32.h", "w");
163 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
164 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
199 #include "crc32.h"
203 * This function can be used by asm versions of crc32()
219 unsigned long ZEXPORT crc32(crc, buf, len) function
  /external/zlib/src/
crc32.c 0 /* 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(crc, buf, len function
    [all...]
  /frameworks/base/include/androidfw/
BackupHelpers.h 48 int crc32; member in struct:android::FileState
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
trxhdr.h 54 uint32 crc32; /* 32-bit CRC from flag_version to end of file */ member in struct:trx_header
  /system/core/libzipfile/
centraldir.c 75 unsigned long crc32; local
106 crc32 = read_le_int(&p[0x10]);
  /dalvik/dexopt/
OptMain.cpp 64 long modWhen, crc32; local
112 &modWhen, &crc32) != 0)
120 crc32 = crc32;
187 modWhen, crc32, isBootstrap))

Completed in 2371 milliseconds

1 2 3 4 5 6