HomeSort by relevance Sort by last modified time
    Searched refs:CRC (Results 1 - 25 of 78) 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")
36 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}
38 // \brief Update the CRC calculation with Data.
41 uint32_t getCRC() const { return CRC; }
44 uint32_t CRC;
  /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 117 unsigned int test_mm_crc32_u8(unsigned int CRC, unsigned char V) {
120 return _mm_crc32_u8(CRC, V);
123 unsigned int test_mm_crc32_u16(unsigned int CRC, unsigned short V) {
126 return _mm_crc32_u16(CRC, V);
129 unsigned int test_mm_crc32_u32(unsigned int CRC, unsigned int V) {
132 return _mm_crc32_u32(CRC, V);
135 unsigned int test_mm_crc32_u64(unsigned long long CRC, unsigned long long V) {
138 return _mm_crc32_u64(CRC, V);
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 33 CrashRecoveryContext *CRC;
40 CrashRecoveryContextImpl(CrashRecoveryContext *CRC) : CRC(CRC),
114 return CRCI->CRC;
339 CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *) Impl;
340 assert(CRC && "Crash recovery context never initialized!");
341 assert(CRC->Failed && "No crash was detected!");
342 return CRC->Backtrace;
363 CrashRecoveryContext *CRC;
    [all...]
JamCRC.cpp 93 int TableIdx = (CRC ^ Byte) & 0xff;
94 CRC = CRCTable[TableIdx] ^ (CRC >> 8);
  /hardware/intel/common/libmix/mix_audio/src/
mixacpmp3.h 68 * @CRC: CRC. See #MIX_ACP_MP3_CRC
81 gboolean CRC;
144 * MixAudioConfigParamMP3.CRC accessor.
148 #define MIX_ACP_MP3_CRC(obj) (MIX_AUDIOCONFIGPARAMSMP3(obj)->CRC)
mixacpmp3.c 35 self->CRC=FALSE;
118 t->CRC = s->CRC;
167 ret = (acp1->CRC == acp2->CRC) &&
mixacpaac.c 49 self->CRC=FALSE;
146 t->CRC = s->CRC;
199 (acp1->CRC == acp2->CRC) &&
295 mix_log(MIX_AUDIO_COMP, MIX_LOG_LEVEL_INFO, "CRC: %d\n", t->CRC);
mixacpaac.h 147 * @CRC: CRC check 0:disable, 1:enable.
169 gboolean CRC;
255 * #MixAudioConfigParamAAC.CRC accessor.
257 #define MIX_ACP_AAC_CRC(obj) (MIX_AUDIOCONFIGPARAMSAAC(obj)->CRC)
  /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/libgdx/gdx/src/com/badlogic/gdx/utils/compression/
CRC.java 1 // SevenZip/CRC.java
5 public class CRC {
  /hardware/intel/common/libmix/mix_audio/tests/smoke/
mixaudiosmoke.c 68 mp3->CRC = 0;
  /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
XzCrc64Opt.asm 111 CRC macro op0:req, op1:req, dest0:req, dest1:req, src:req, t:req
117 CRC xor, xor, dest0, dest1, src, t
185 CRC xor, mov, r3, r2, r6, 3
  /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/clang/lib/StaticAnalyzer/Frontend/
ModelInjector.cpp 101 llvm::CrashRecoveryContext CRC;
103 CRC.RunSafelyOnThread([&]() { Instance.ExecuteAction(parseModelFile); },
  /external/clang/tools/libclang/
CIndexer.h 88 bool RunSafely(llvm::CrashRecoveryContext &CRC, llvm::function_ref<void()> Fn,
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
makefile 15 $O\CRC.obj \
57 !include "../../Crc.mak"
  /external/valgrind/memcheck/tests/
varinfo6.stdout.exp 2 block 1: crc = 0xA212ABF8, combined CRC = 0xA212ABF8, size = 22373
10 final combined CRC = 0xA212ABF8
  /external/lzma/CPP/7zip/UI/Console/
makefile 14 $O\CRC.obj \
68 !include "../../Crc.mak"
  /prebuilts/gdb/darwin-x86/lib/python2.7/
zipfile.py 281 'CRC',
325 # CRC CRC-32 of the uncompressed file
336 CRC = compress_size = file_size = 0
338 CRC = self.CRC
363 self.compress_type, dostime, dosdate, CRC,
434 """Generate a CRC-32 table.
443 crc = i
445 if crc & 1
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
zipfile.py 281 'CRC',
325 # CRC CRC-32 of the uncompressed file
336 CRC = compress_size = file_size = 0
338 CRC = self.CRC
363 self.compress_type, dostime, dosdate, CRC,
434 """Generate a CRC-32 table.
443 crc = i
445 if crc & 1
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py 281 'CRC',
325 # CRC CRC-32 of the uncompressed file
336 CRC = compress_size = file_size = 0
338 CRC = self.CRC
363 self.compress_type, dostime, dosdate, CRC,
434 """Generate a CRC-32 table.
443 crc = i
445 if crc & 1
    [all...]

Completed in 1086 milliseconds

1 2 3 4