Home
last modified time | relevance | path

Searched refs:CRC (Results 1 – 25 of 191) sorted by relevance

12345678

/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/docs/source/
Dcrcmod.rst2 :mod:`crcmod` -- CRC calculation
6 :synopsis: CRC calculation
11 for calculating CRCs of byte strings using common CRC algorithms.
22 :func:`mkCrcFun` -- CRC function factory
25 The function factory provides a simple interface for CRC calculation.
30 using a specified CRC algorithm.
32 :param poly: The generator polynomial to use in calculating the CRC. The value
37 :param initCrc: Initial value used to start the CRC calculation. This initial
40 equivalent to the CRC result the algorithm should return for a
48 :param xorOut: Final value to XOR with the calculated CRC value. Used by some
[all …]
Dcrcmod.predefined.rst2 :mod:`crcmod.predefined` -- CRC calculation using predefined algorithms
6 :synopsis: CRC calculation using predefined algorithms
11 for calculating CRCs of byte strings using common predefined CRC algorithms.
14 except that the CRC algorithm is specified by a predefined name, rather than the
17 Predefined CRC algorithms
75 :func:`mkPredefinedCrcFun` -- CRC function factory
78 The function factory provides a simple interface for CRC calculation. It is similar
79 to :func:`crcmod.mkCrcFun`, except that it specifies a CRC algorithm by name rather
85 using a specified CRC algorithm.
87 :param crc_name: The name of the predefined CRC algorithm to use.
[all …]
Dintro.rst7 compute the Cyclic Redundancy Check (CRC). It includes a (optional) C
10 There is no attempt in this package to explain how the CRC works. There are a
16 This package allows the use of any 8, 16, 24, 32, or 64 bit CRC. You can
30 common CRC algorithms are predefined in :mod:`crcmod.predefined`. If someone
134 CRC-32 implementation
137 CRC-32 implementation
/external/llvm/lib/Target/Mips/
DMipsCondMov.td19 class CMov_I_I_FT<string opstr, RegisterOperand CRC, RegisterOperand DRC,
21 InstSE<(outs DRC:$rd), (ins DRC:$rs, CRC:$rt, DRC:$F),
27 class CMov_I_F_FT<string opstr, RegisterOperand CRC, RegisterOperand DRC,
29 InstSE<(outs DRC:$fd), (ins DRC:$fs, CRC:$rt, DRC:$F),
56 multiclass MovzPats0<RegisterClass CRC, RegisterClass DRC,
60 def : MipsPat<(select (i32 (setge CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
61 (MOVZInst DRC:$T, (SLTOp CRC:$lhs, CRC:$rhs), DRC:$F)>;
62 def : MipsPat<(select (i32 (setuge CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
63 (MOVZInst DRC:$T, (SLTuOp CRC:$lhs, CRC:$rhs), DRC:$F)>;
64 def : MipsPat<(select (i32 (setge CRC:$lhs, immSExt16:$rhs)), DRC:$T, DRC:$F),
[all …]
/external/llvm/lib/Support/
DCrashRecoveryContext.cpp33 CrashRecoveryContext *CRC; member
40 CrashRecoveryContextImpl(CrashRecoveryContext *CRC) : CRC(CRC), in CrashRecoveryContextImpl()
114 return CRCI->CRC; in GetCurrent()
339 CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *) Impl; in getBacktrace() local
340 assert(CRC && "Crash recovery context never initialized!"); in getBacktrace()
341 assert(CRC->Failed && "No crash was detected!"); in getBacktrace()
342 return CRC->Backtrace; in getBacktrace()
363 CrashRecoveryContext *CRC; member
376 Info->Result = Info->CRC->RunSafely(Info->Fn); in RunSafelyOnThread_Dispatch()
383 if (CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *)Impl) in RunSafelyOnThread() local
[all …]
DJamCRC.cpp93 int TableIdx = (CRC ^ Byte) & 0xff; in update()
94 CRC = CRCTable[TableIdx] ^ (CRC >> 8); in update()
/external/clang/test/CodeGen/
Dsse42-builtins.c117 unsigned int test_mm_crc32_u8(unsigned int CRC, unsigned char V) { in test_mm_crc32_u8() argument
120 return _mm_crc32_u8(CRC, V); in test_mm_crc32_u8()
123 unsigned int test_mm_crc32_u16(unsigned int CRC, unsigned short V) { in test_mm_crc32_u16() argument
126 return _mm_crc32_u16(CRC, V); in test_mm_crc32_u16()
129 unsigned int test_mm_crc32_u32(unsigned int CRC, unsigned int V) { in test_mm_crc32_u32() argument
132 return _mm_crc32_u32(CRC, V); in test_mm_crc32_u32()
135 unsigned int test_mm_crc32_u64(unsigned long long CRC, unsigned long long V) { in test_mm_crc32_u64() argument
138 return _mm_crc32_u64(CRC, V); in test_mm_crc32_u64()
/external/lzma/CS/7zip/Common/
DCRC.cs5 class CRC class
9 static CRC() in CRC() method in SevenZip.CRC
44 CRC crc = new CRC(); in CalculateDigest()
/external/lzma/Java/SevenZip/
DLzmaBench.java116 public CRC CRC = new CRC(); field in LzmaBench.CrcOutStream
120 CRC.Init(); in Init()
124 return CRC.GetDigest(); in GetDigest()
128 CRC.Update(b); in write()
132 CRC.Update(b, off, len); in write()
136 CRC.UpdateByte(b); in write()
321 CRC crc = new CRC(); in LzmaBenchmark()
/external/llvm/include/llvm/Support/
DJamCRC.h36 JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {} in CRC() function
41 uint32_t getCRC() const { return CRC; } in getCRC()
44 uint32_t CRC;
/external/lzma/CS/7zip/Compress/LzmaAlone/
DLzmaBench.cs122 public CRC CRC = new CRC(); field in SevenZip.LzmaBench.CrcOutStream
123 public void Init() { CRC.Init(); } in Init()
124 public UInt32 GetDigest() { return CRC.GetDigest(); } in GetDigest()
138 CRC.UpdateByte(b); in WriteByte()
142 CRC.Update(buffer, (uint)offset, (uint)count); in Write()
277 CRC crc = new CRC(); in LzmaBenchmark()
/external/icu/icu4c/source/data/curr/
Dur_IN.txt11 CRC{
12 "CRC",
49 CRC{
Dzh_Hant_HK.txt55 CRC{
56 "CRC",
291 CRC{
Duz_Cyrl.txt68 CRC{
69 "CRC",
294 CRC{
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/
Dchangelog14 * Updated database of pre-defined CRC algorithms
20 * Added XOR out feature to allow creation of standard CRC algorithms
21 * Added a database of pre-defined CRC algorithms
/external/zlib/src/contrib/ada/
Dzlib.adb168 (CRC : in Unsigned_32;
174 return Unsigned_32 (crc32 (ULong (CRC),
180 (CRC : in out Unsigned_32;
183 CRC := CRC32 (CRC, Data);
217 Filter.CRC := 0;
633 CRC32 (Filter.CRC, In_Data (In_Data'First .. In_Last));
647 Put_32 (Footer, Filter.CRC);
Dzlib.ads200 (CRC : in Unsigned_32;
207 (CRC : in out Unsigned_32;
323 CRC : Unsigned_32; variable
/external/lzma/Asm/x86/
D7zCrcOpt.asm23 CRC macro op:req, dest:req, src:req, t:req macro
28 CRC xor, dest, src, t
32 CRC mov, dest, src, t
41 CRC xor, x0, r6, 0
/external/lzma/CPP/7zip/UI/GUI/
DExtract.rc31 IDS_EXTRACT_MESSAGE_CRC_ERROR "CRC failed in '{0}'. File is broken."
33 IDS_EXTRACT_MESSAGE_CRC_ERROR_ENCRYPTED "CRC failed in encrypted file '{0}'. Wrong password?"
40 IDS_EXTRACT_MSG_CRC_ERROR "CRC failed"
/external/valgrind/memcheck/tests/
Dvarinfo6.stdout.exp2 block 1: crc = 0xA212ABF8, combined CRC = 0xA212ABF8, size = 22373
10 final combined CRC = 0xA212ABF8
/external/cblas/testing/
Dc_zblat3.f727 CHARACTER*14 CRC, CTA,CTB local
744 CRC = ' CblasRowMajor'
746 CRC = ' CblasColMajor'
748 WRITE(NOUT, FMT = 9995)NC,SNAME,CRC, CTA,CTB
1053 CHARACTER*14 CRC, CS,CU local
1066 CRC = ' CblasRowMajor'
1068 CRC = ' CblasColMajor'
1070 WRITE(NOUT, FMT = 9995)NC,SNAME,CRC, CS,CU
1404 CHARACTER*14 CRC, CS, CU, CA, CD local
1429 CRC = ' CblasRowMajor'
[all …]
Dc_cblat3.f726 CHARACTER*14 CRC, CTA,CTB local
743 CRC = ' CblasRowMajor'
745 CRC = ' CblasColMajor'
747 WRITE(NOUT, FMT = 9995)NC,SNAME,CRC, CTA,CTB
1052 CHARACTER*14 CRC, CS,CU local
1065 CRC = ' CblasRowMajor'
1067 CRC = ' CblasColMajor'
1069 WRITE(NOUT, FMT = 9995)NC,SNAME,CRC, CS,CU
1403 CHARACTER*14 CRC, CS, CU, CA, CD local
1428 CRC = ' CblasRowMajor'
[all …]
/external/lzma/CPP/7zip/Bundles/LzmaCon/
Dmakefile.gcc54 CRC.o \
126 CRC.o: ../../../Common/CRC.cpp
127 $(CXX) $(CFLAGS) ../../../Common/CRC.cpp
/external/zopfli/src/zopfli/
Dgzip_container.c70 static unsigned long CRC(const unsigned char* buf, int len) { in CRC() function
80 unsigned long crcvalue = CRC(in, insize); in ZopfliGzipCompress()
/external/clang/lib/StaticAnalyzer/Frontend/
DModelInjector.cpp101 llvm::CrashRecoveryContext CRC; in onBodySynthesis() local
103 CRC.RunSafelyOnThread([&]() { Instance.ExecuteAction(parseModelFile); }, in onBodySynthesis()

12345678