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

1 2 3 4

  /external/llvm/include/llvm/Support/
JamCRC.h 12 // We will use the "Rocksoft^tm Model CRC Algorithm" to describe the properties
13 // of this CRC:
20 // Check : 340BC6D9 (result of CRC for "123456789")
37 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
39 // \brief Update the CRC calculation with Data.
42 uint32_t getCRC() const { return CRC; }
45 uint32_t CRC;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
JamCRC.h 12 // We will use the "Rocksoft^tm Model CRC Algorithm" to describe the properties
13 // of this CRC:
20 // Check : 340BC6D9 (result of CRC for "123456789")
37 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
39 // Update the CRC calculation with Data.
42 uint32_t getCRC() const { return CRC; }
45 uint32_t CRC;
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
CrashRecoveryTest.cpp 38 IncrementGlobalCleanup(CrashRecoveryContext *CRC)
39 : CrashRecoveryContextCleanup(CRC) {}
49 CrashRecoveryContext CRC;
50 CRC.registerCleanup(new IncrementGlobalCleanup(&CRC));
51 EXPECT_TRUE(CRC.RunSafely(noop));
57 CrashRecoveryContext CRC;
58 CRC.registerCleanup(new IncrementGlobalCleanup(&CRC));
59 EXPECT_FALSE(CRC.RunSafely(nullDeref))
    [all...]
  /external/lzma/CS/7zip/Common/
CRC.cs 1 // Common/CRC.cs
5 class CRC
9 static CRC()
44 CRC crc = new CRC();
45 // crc.Init();
46 crc.Update(data, offset, size);
47 return crc.GetDigest();
  /external/clang/test/CodeGen/
sse42-builtins.c 101 unsigned int test_mm_crc32_u8(unsigned int CRC, unsigned char V) {
104 return _mm_crc32_u8(CRC, V);
107 unsigned int test_mm_crc32_u16(unsigned int CRC, unsigned short V) {
110 return _mm_crc32_u16(CRC, V);
113 unsigned int test_mm_crc32_u32(unsigned int CRC, unsigned int V) {
116 return _mm_crc32_u32(CRC, V);
119 unsigned long long test_mm_crc32_u64(unsigned long long CRC, unsigned long long V) {
122 return _mm_crc32_u64(CRC, V);
  /external/icu/tools/
ziputil.py 46 a.CRC == b.CRC
  /external/swiftshader/third_party/LLVM/lib/Support/
CrashRecoveryContext.cpp 27 CrashRecoveryContext *CRC;
33 CrashRecoveryContextImpl(CrashRecoveryContext *CRC) : CRC(CRC),
95 return CRCI->CRC;
324 CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *) Impl;
325 assert(CRC && "Crash recovery context never initialized!");
326 assert(CRC->Failed && "No crash was detected!");
327 return CRC->Backtrace;
336 CrashRecoveryContext *CRC;
    [all...]
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 33 CrashRecoveryContext *CRC;
39 CrashRecoveryContextImpl(CrashRecoveryContext *CRC) : CRC(CRC),
113 return CRCI->CRC;
355 CrashRecoveryContext *CRC;
368 Info->Result = Info->CRC->RunSafely(Info->Fn);
375 if (CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *)Impl)
376 CRC->setSwitchedThread();
JamCRC.cpp 94 int TableIdx = (CRC ^ Byte) & 0xff;
95 CRC = CRCTable[TableIdx] ^ (CRC >> 8);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
CrashRecoveryContext.cpp 33 CrashRecoveryContext *CRC;
39 CrashRecoveryContextImpl(CrashRecoveryContext *CRC) : CRC(CRC),
116 return CRCI->CRC;
389 CrashRecoveryContext *CRC;
402 Info->Result = Info->CRC->RunSafely(Info->Fn);
409 if (CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *)Impl)
410 CRC->setSwitchedThread();
JamCRC.cpp 94 int TableIdx = (CRC ^ Byte) & 0xff;
95 CRC = CRCTable[TableIdx] ^ (CRC >> 8);
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/crc/
module-nocrc.s 1 # RUN: llvm-mc %s -arch=mips -mcpu=mips32r6 -mattr=+crc | \
4 # RUN: llvm-mc %s -arch=mips -mcpu=mips32r6 -filetype=obj -o - -mattr=+crc | \
10 # Check that MIPS.abiflags has no CRC flag.
14 # CHECK-OBJ-NOT: CRC (0x8000)
module-crc.s 9 # CHECK-ASM: .module crc
14 # CHECK-OBJ: CRC (0x8000)
17 .module crc
  /external/tensorflow/tensorflow/core/lib/hash/
crc32c_test.cc 24 TEST(CRC, StandardResults) {
59 TEST(CRC, Values) { ASSERT_NE(Value("a", 1), Value("foo", 3)); }
61 TEST(CRC, Extend) {
65 TEST(CRC, Mask) {
66 uint32 crc = Value("foo", 3); local
67 ASSERT_NE(crc, Mask(crc));
68 ASSERT_NE(crc, Mask(Mask(crc)));
69 ASSERT_EQ(crc, Unmask(Mask(crc)))
    [all...]
  /external/lzma/Java/SevenZip/
LzmaBench.java 116 public CRC CRC = new CRC();
120 CRC.Init();
124 return CRC.GetDigest();
128 CRC.Update(b);
132 CRC.Update(b, off, len);
136 CRC.UpdateByte(b);
321 CRC crc = new CRC(); local
    [all...]
CRC.java 1 // SevenZip/CRC.java
5 public class CRC
  /external/lzma/Asm/x86/
7zCrcOpt.asm 23 CRC macro op:req, dest:req, src:req, t:req
28 CRC xor, dest, src, t
32 CRC mov, dest, src, t
41 CRC xor, x0, r6, 0
  /external/zopfli/src/zopfli/
gzip_container.c 33 /* Makes the table for a fast CRC. */
53 Updates a running crc with the bytes buf[0..len-1] and returns
54 the updated crc. The crc should be initialized to zero.
56 static unsigned long UpdateCRC(unsigned long crc,
58 unsigned long c = crc ^ 0xffffffffL;
69 /* Returns the CRC of the bytes buf[0..len-1]. */
70 static unsigned long CRC(const unsigned char* buf, int len) {
80 unsigned long crcvalue = CRC(in, insize);
99 /* CRC */
    [all...]
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs 122 public CRC CRC = new CRC();
123 public void Init() { CRC.Init(); }
124 public UInt32 GetDigest() { return CRC.GetDigest(); }
138 CRC.UpdateByte(b);
142 CRC.Update(buffer, (uint)offset, (uint)count);
277 CRC crc = new CRC();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
LazyCallGraphTest.cpp 620 LazyCallGraph::RefSCC &CRC = *CG.lookupRefSCC(C);
624 EXPECT_TRUE(ARC.isParentOf(CRC));
636 EXPECT_TRUE(DRC.isChildOf(CRC));
663 EXPECT_EQ(&CRC, CG.lookupRefSCC(C));
684 EXPECT_EQ(&CRC, CG.lookupRefSCC(C));
705 EXPECT_EQ(&CRC, CG.lookupRefSCC(C));
726 EXPECT_EQ(&CRC, CG.lookupRefSCC(C));
770 LazyCallGraph::RefSCC &CRC = *CG.lookupRefSCC(C1);
776 ASSERT_EQ(&CRC, CG.lookupRefSCC(C2));
777 ASSERT_EQ(&CRC, CG.lookupRefSCC(C3))
    [all...]
  /device/linaro/bootloader/edk2/Omap35xxPkg/MMCHSDxe/
MMCHS.h 54 UINT32 CRC; // CRC7 checksum [7:1]
66 UINT8 CRC: 7; // CRC [7:1]
111 UINT8 CRC: 7; // CRC [7:1]
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/bzip2/
CRC.java 22 * A simple class the hold and calculate the CRC for sanity checking of the
26 class CRC {
94 CRC() {
119 globalCrc = (globalCrc << 8) ^ CRC.crc32Table[temp];
  /external/llvm/unittests/Analysis/
LazyCallGraphTest.cpp 493 LazyCallGraph::RefSCC &CRC = *CG.lookupRefSCC(C);
496 EXPECT_TRUE(ARC.isParentOf(CRC));
502 EXPECT_TRUE(DRC.isChildOf(CRC));
524 EXPECT_EQ(&CRC, CG.lookupRefSCC(C));
541 EXPECT_EQ(&CRC, CG.lookupRefSCC(C));
558 EXPECT_EQ(&CRC, CG.lookupRefSCC(C));
575 EXPECT_EQ(&CRC, CG.lookupRefSCC(C));
618 LazyCallGraph::RefSCC &CRC = *CG.lookupRefSCC(C1);
624 ASSERT_EQ(&CRC, CG.lookupRefSCC(C2));
625 ASSERT_EQ(&CRC, CG.lookupRefSCC(C3))
    [all...]
  /external/syzkaller/vendor/cloud.google.com/go/storage/
reader.go 32 checkCRC bool // should we check the CRC?
34 gotCRC uint32 // running crc
49 // Check CRC here. It would be natural to check it in Close, but
53 return n, fmt.Errorf("storage: bad CRC on read: got %d, want %d",
  /external/clang/lib/StaticAnalyzer/Frontend/
ModelInjector.cpp 101 llvm::CrashRecoveryContext CRC;
103 CRC.RunSafelyOnThread([&]() { Instance.ExecuteAction(parseModelFile); },

Completed in 938 milliseconds

1 2 3 4