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

1 2 3 4 5 6 7 8 91011>>

  /device/google/contexthub/firmware/os/platform/native/inc/plat/
crc.h 3 #define crc32 soft_crc32 macro
  /external/elfutils/libdwfl/
libdwfl_crc32.c 32 #define crc32 attribute_hidden __libdwfl_crc32 macro
35 #include "../lib/crc32.c"
libdwfl_crc32_file.c 33 #define crc32 __libdwfl_crc32 macro
  /external/elfutils/libelf/
libelf_crc32.c 32 #define crc32 attribute_hidden __libelf_crc32 macro
35 #include "../lib/crc32.c"
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
arch-5.s 5 crc32 %ecx,%ebx label
arch-6.s 5 crc32 %ecx,%ebx label
inval-crc32.s 1 # Check illegal crc32 in SSE4.2
8 crc32 (%esi), %al label
9 crc32 (%esi), %ax label
10 crc32 (%esi), %eax label
11 crc32 %al, %al label
13 crc32 %ax, %ax label
17 crc32 al,byte ptr [esi] label
18 crc32 ax, word ptr [esi] label
19 crc32 al, [esi] label
20 crc32 ax, [esi label
21 crc32 eax, [esi] label
22 crc32 al,al label
23 crc32 ax, ax label
    [all...]
crc32.s 1 # Check crc32 in SSE4.2
9 crc32 %al, %eax label
11 crc32 %ax, %eax label
13 crc32 %eax, %eax label
17 crc32 eax,byte ptr [esi] label
18 crc32 eax, word ptr [esi] label
19 crc32 eax,dword ptr [esi] label
20 crc32 eax,al label
21 crc32 eax, ax label
22 crc32 eax,ea label
    [all...]
arch-2.s 9 crc32 %ecx,%ebx label
arch-3.s 9 crc32 %ecx,%ebx label
x86-64-crc32.s 1 # Check 64bit crc32 in SSE4.2
11 crc32 %al, %eax label
13 crc32 %al, %rax label
15 crc32 %ax, %eax label
17 crc32 %eax, %eax label
19 crc32 %rax, %rax label
23 crc32 rax,byte ptr [rsi] label
24 crc32 eax,byte ptr [rsi] label
25 crc32 eax, word ptr [rsi] label
26 crc32 eax,dword ptr [rsi label
27 crc32 rax,qword ptr [rsi] label
28 crc32 eax,al label
29 crc32 rax,al label
30 crc32 eax, ax label
31 crc32 eax,eax label
32 crc32 rax,rax label
    [all...]
x86-64-inval-crc32.s 1 # Check illegal 64bit crc32 in SSE4.2
8 crc32 (%rsi), %al label
9 crc32 (%rsi), %ax label
10 crc32 (%rsi), %eax label
11 crc32 (%rsi), %rax label
12 crc32 %al, %al label
14 crc32 %ax, %ax label
16 crc32 %rax, %eax label
17 crc32 %eax, %rax label
24 crc32 al,byte ptr [rsi label
25 crc32 ax, word ptr [rsi] label
26 crc32 rax,word ptr [rsi] label
27 crc32 rax,dword ptr [rsi] label
28 crc32 al,[rsi] label
29 crc32 ax,[rsi] label
30 crc32 eax,[rsi] label
31 crc32 rax,[rsi] label
32 crc32 al,al label
33 crc32 ax, ax label
34 crc32 rax,eax label
    [all...]
  /external/elfutils/lib/
crc32.c 90 crc32 (uint32_t crc, unsigned char *buf, size_t len) function
  /external/vboot_reference/tests/
crc32_test.c 8 #include "crc32.h"
18 uint32_t crc32; member in struct:__anon43267
42 uint32_t crc32; local
44 crc32 = Crc32(cases[i].vector, cases[i].len);
45 EXPECT(crc32 == cases[i].crc32);
  /prebuilts/go/darwin-x86/src/hash/crc32/
crc32_otherarch.go 7 package crc32 package
crc32_amd64p32.go 5 package crc32 package
12 // castagnoliSSE42 is defined in crc32_amd64p32.s and uses the SSE4.2 CRC32
crc32_arm64.go 5 // ARM64-specific hardware-assisted CRC32 algorithms. See crc32.go for a
9 package crc32 package
24 panic("arch-specific crc32 instruction for Catagnoli not available")
30 panic("arch-specific crc32 instruction for Castagnoli not available")
42 panic("arch-specific crc32 instruction for IEEE not available")
48 panic("arch-specific crc32 instruction for IEEE not available")
crc32_generic.go 5 // This file contains CRC32 algorithms that are not specific to any architecture
8 // The simple (and slow) CRC32 implementation only uses a 256*4 bytes table.
13 package crc32 package
  /prebuilts/go/linux-x86/src/hash/crc32/
crc32_otherarch.go 7 package crc32 package
crc32_amd64p32.go 5 package crc32 package
12 // castagnoliSSE42 is defined in crc32_amd64p32.s and uses the SSE4.2 CRC32
crc32_arm64.go 5 // ARM64-specific hardware-assisted CRC32 algorithms. See crc32.go for a
9 package crc32 package
24 panic("arch-specific crc32 instruction for Catagnoli not available")
30 panic("arch-specific crc32 instruction for Castagnoli not available")
42 panic("arch-specific crc32 instruction for IEEE not available")
48 panic("arch-specific crc32 instruction for IEEE not available")
crc32_generic.go 5 // This file contains CRC32 algorithms that are not specific to any architecture
8 // The simple (and slow) CRC32 implementation only uses a 256*4 bytes table.
13 package crc32 package
  /external/llvm/lib/Support/
Compression.cpp 79 uint32_t zlib::crc32(StringRef Buffer) { function in class:zlib
80 return ::crc32(0, (const Bytef *)Buffer.data(), Buffer.size());
95 uint32_t zlib::crc32(StringRef Buffer) {
96 llvm_unreachable("zlib::crc32 is unavailable");
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/common/
DecoderUtil.java 15 import java.util.zip.CRC32;
24 CRC32 crc32 = new CRC32(); local
25 crc32.update(buf, off, len);
26 long value = crc32.getValue();
  /device/google/contexthub/firmware/os/platform/stm32/
crc.c 52 uint32_t crc32(const void *buf, size_t size, uint32_t crc) function

Completed in 424 milliseconds

1 2 3 4 5 6 7 8 91011>>