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

1 2 3 4 5 6 7 8 91011>>

  /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/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/
syntax-err.asm 1 global crc32
2 crc32: resd 1 label
  /external/valgrind/main/none/tests/amd64/
crc32.vgtest 1 prog: crc32
  /external/pixman/test/
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...]
  /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);
crc32.h 12 int Crc32(const unsigned char* buf, int length);
13 bool Crc32(const char* text, int* crc);
crc32_unittest.cc 7 #include "rlz/lib/crc32.h"
17 // Externally calculated at http://crc32-checksum.waraxe.us/
29 rlz_lib::Crc32(reinterpret_cast<const unsigned char*>(kData[i].data),
36 // Externally calculated at http://crc32-checksum.waraxe.us/
49 EXPECT_TRUE(rlz_lib::Crc32(kData[i].data, &crc));
  /external/llvm/test/Transforms/InstCombine/
x86-crc32-demanded.ll 3 ; crc32 with 64-bit destination zeros high 32-bit.
9 ; CHECK: tail call i64 @llvm.x86.sse42.crc32.64.64
12 %0 = tail call i64 @llvm.x86.sse42.crc32.64.64(i64 0, i64 4) nounwind
17 declare i64 @llvm.x86.sse42.crc32.64.64(i64, i64) nounwind readnone
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
CRC32Test.java 19 import java.util.zip.CRC32;
24 * @tests java.util.zip.CRC32#CRC32()
27 // test methods of java.util.zip.CRC32()
28 CRC32 crc = new CRC32();
29 assertEquals("Constructor of CRC32 failed", 0, crc.getValue());
33 * @tests java.util.zip.CRC32#getValue()
36 // test methods of java.util.zip.crc32.getValue()
37 CRC32 crc = new CRC32()
    [all...]
  /external/llvm/test/CodeGen/X86/
sse42_64.ll 3 declare i64 @llvm.x86.sse42.crc32.64.8(i64, i8) nounwind
4 declare i64 @llvm.x86.sse42.crc32.64.64(i64, i64) nounwind
7 %tmp = call i64 @llvm.x86.sse42.crc32.64.8(i64 %a, i8 %b)
15 %tmp = call i64 @llvm.x86.sse42.crc32.64.64(i64 %a, i64 %b)
sse42.ll 4 declare i32 @llvm.x86.sse42.crc32.32.8(i32, i8) nounwind
5 declare i32 @llvm.x86.sse42.crc32.32.16(i32, i16) nounwind
6 declare i32 @llvm.x86.sse42.crc32.32.32(i32, i32) nounwind
9 %tmp = call i32 @llvm.x86.sse42.crc32.32.8(i32 %a, i8 %b)
20 %tmp = call i32 @llvm.x86.sse42.crc32.32.16(i32 %a, i16 %b)
31 %tmp = call i32 @llvm.x86.sse42.crc32.32.32(i32 %a, i32 %b)
  /libcore/luni/src/main/native/
java_util_zip_CRC32.cpp 18 #define LOG_TAG "CRC32"
31 jlong result = crc32(crc, reinterpret_cast<const Bytef*>(bytes.get() + off), len);
36 return crc32(crc, reinterpret_cast<const Bytef*>(&val), 1);
40 NATIVE_METHOD(CRC32, updateImpl, "([BIIJ)J"),
41 NATIVE_METHOD(CRC32, updateByteImpl, "(BJ)J"),
44 jniRegisterNativeMethods(env, "java/util/zip/CRC32", gMethods, NELEM(gMethods));
  /external/qemu/distrib/zlib-1.2.3/
sources.make 2 ZLIB_SOURCES := adler32.c compress.c crc32.c deflate.c gzio.c infback.c inffast.c inflate.c inftrees.c trees.c uncompr.c zutil.c
  /libcore/benchmarks/src/benchmarks/regression/
ChecksumBenchmark.java 23 import java.util.zip.CRC32;
41 CRC32 crc = new CRC32();
47 CRC32 crc = new CRC32();
  /libcore/luni/src/main/java/java/util/zip/
CRC32.java 23 * The CRC32 class is used to compute a CRC32 checksum from data provided as
26 public class CRC32 implements Checksum {
33 * Returns the CRC32 checksum for all input received.
42 * Resets the CRC32 checksum to it initial state.
70 * Update this {@code CRC32} checksum with the contents of {@code buf},
  /external/chromium_org/native_client_sdk/src/libraries/zlib/
library.dsc 16 'crc32.c',
33 'crc32.h',
  /development/ndk/platforms/android-3/arch-arm/symbols/
libz.so.functions.txt 11 crc32
  /development/ndk/platforms/android-9/arch-mips/symbols/
libz.so.functions.txt 7 crc32
  /development/ndk/platforms/android-9/arch-x86/symbols/
libz.so.functions.txt 7 crc32
  /external/zlib/src/old/os2/
zlib.def 13 crc32
  /system/core/libsparse/
sparse_format.h 30 __le32 image_checksum; /* CRC32 checksum of the original data, counting "don't care" */
49 /* Following a Raw or Fill or CRC32 chunk is data.
52 * For a CRC32 chunk, it's 4 bytes of CRC32
  /external/chromium_org/rlz/win/lib/
machine_deal_test.cc 78 "crc32: 1B4D6BB3";
87 "crc32: 90707106";
97 "crc32: 35F2E717";
106 "crc32: C8540E02";
115 "crc32: 60B6409A";
124 "crc32: 374C1C47";
134 "crc32: 0AB1FB39";
  /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/chromium_org/courgette/
crc.cc 24 crc = crc32(0, buffer, size);

Completed in 1347 milliseconds

1 2 3 4 5 6 7 8 91011>>