Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/test/
Dexamples.py3 from crcmod import Crc
31 Crc(g8, rev=False).generateCode('crc8',out)
32 Crc(g8, rev=True).generateCode('crc8r',out)
33 Crc(g16, rev=False).generateCode('crc16',out)
34 Crc(g16, rev=True).generateCode('crc16r',out)
35 Crc(g24, rev=False).generateCode('crc24',out)
36 Crc(g24, rev=True).generateCode('crc24r',out)
37 Crc(g32, rev=False).generateCode('crc32',out)
38 Crc(g32, rev=True).generateCode('crc32r',out)
39 Crc(g64, rev=False).generateCode('crc64',out)
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/docs/source/
Dcrcmod.rst10 This module provides a function factory :func:`mkCrcFun` and a class :class:`Crc`
106 Class :class:`Crc`
111 .. class:: Crc(poly[, initCrc, rev, xorOut])
113 Returns a new :class:`Crc` object for calculating CRCs using a specified CRC algorithm.
136 :class:`Crc` objects contain the following constant values:
148 :class:`Crc` objects support the following methods:
152 Create a new instance of the :class:`Crc` class initialized to the same
159 Create a new instance of the :class:`Crc` class initialized to the same
204 >>> crc32 = crcmod.Crc(0x104c11db7, initCrc=0, xorOut=0xFFFFFFFF)
211 The :meth:`Crc.update` method can be called multiple times, and the CRC value is updated with each …
Dintro.rst18 :class:`crcmod.Crc` class which provides the same interface as the
20 library. A :class:`crcmod.Crc` class instance can also generate C/C++ source
36 :class:`crcmod.Crc` class and replace the method
37 :meth:`crcmod.Crc.generateCode`. Use :meth:`crcmod.Crc.generateCode` as a
Dcrcmod.predefined.rst133 This class is inherited from the :class:`crcmod.Crc` class, and is the same except for the
138 Returns a new :class:`Crc` object for calculating CRCs using a specified CRC algorithm.
145 .. class:: Crc(poly[, initCrc, rev, xorOut])
159 >>> crc32 = crcmod.predefined.Crc('crc-32')
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python2/crcmod/
Dpredefined.py146 class PredefinedCrc(crcmod.Crc):
149 …crcmod.Crc.__init__(self, poly=definition['poly'], initCrc=definition['init'], rev=definition['rev…
153 Crc = PredefinedCrc variable
Dtest.py30 from crcmod import mkCrcFun, Crc
359 crc = Crc(g32)
391 crc = Crc(g32, initCrc=0, xorOut= ~0L)
Dcrcmod.py53 class Crc: class
124 n = Crc(poly=None, initialize=False)
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod_osx/crcmod/
Dpredefined.py146 class PredefinedCrc(crcmod.Crc):
149 …crcmod.Crc.__init__(self, poly=definition['poly'], initCrc=definition['init'], rev=definition['rev…
153 Crc = PredefinedCrc variable
Dtest.py30 from crcmod import mkCrcFun, Crc
359 crc = Crc(g32)
391 crc = Crc(g32, initCrc=0, xorOut= ~0L)
Dcrcmod.py53 class Crc: class
124 n = Crc(poly=None, initialize=False)
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/
Dpredefined.py146 class PredefinedCrc(crcmod.Crc):
153 Crc = PredefinedCrc variable
Dtest.py31 from .crcmod import mkCrcFun, Crc
348 crc = Crc(g32)
380 crc = Crc(g32, initCrc=0, xorOut= ~0)
Dcrcmod.py54 class Crc: class
125 n = Crc(poly=None, initialize=False)
/external/chromium-trace/catapult/third_party/gsutil/gslib/
Dhashing_helper.py215 fp, crcmod.predefined.Crc('crc-32c'))
324 hash_algs['crc32c'] = lambda: crcmod.predefined.Crc('crc-32c')
332 hash_algs['crc32c'] = lambda: crcmod.predefined.Crc('crc-32c')
Dcopy_helper.py687 hash_dict['crc32c'] = crcmod.predefined.Crc('crc-32c')
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/
DREADME14 Crc class which provides the same interface as the ``md5`` and ``sha`` modules
15 from the Python standard library. A ``Crc`` class instance can also generate
30 ``Crc`` class and replace the method ``generateCode``. Use ``generateCode`` as
/external/lzma/CPP/7zip/Archive/7z/
D7zItem.h156 UInt32 Crc; member
D7zFolderOutStream.cpp69 (fi.IsDir || !fi.CrcDefined || !_checkCrc || fi.Crc == _crcStreamSpec->GetCRC()) ? in CloseFileAndSetResult()
D7zUpdate.cpp579 return (file.IsDir || !file.CrcDefined || file.Crc == _crcStreamSpec->GetCRC()) ? S_OK: S_FALSE; in CloseFileAndSetResult()
1171 uf.Crc = file.Crc; in Update()
1297 file.Crc = inStreamSpec->CRCs[subIndex]; in Update()
D7zHandler.cpp592 case kpidCRC: if (item.CrcDefined) PropVarEm_Set_UInt32(value, item.Crc); break; in GetProperty()
D7zIn.cpp1412 file.Crc = 0; in ReadHeader()
1420 file.Crc = digests.Vals[sizeIndex]; in ReadHeader()
D7zOut.cpp565 digests.Vals.Add(file.Crc); in WriteHeader()
/external/lzma/CPP/7zip/UI/Common/
DBench.cpp230 UInt32 Crc; member in CBenchmarkOutStream
235 Crc = CRC_INIT_VAL; in Init()
253 Crc = CrcUpdate(Crc, data, curSize); in Write()
271 UInt32 Crc; member in CCrcOutStream
275 void Init() { Crc = CRC_INIT_VAL; } in Init()
282 Crc = CrcUpdate(Crc, data, size); in Write()
883 UInt32 crcNew = CRC_GET_DIGEST(outStreamSpec->Crc); in Encode()
994 if (crcOutStreamSpec->CalcCrc && CRC_GET_DIGEST(crcOutStreamSpec->Crc) != crc) in Decode()
/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
Dhash.py151 hash_dict['crc32c'] = crcmod.predefined.Crc('crc-32c')
/external/llvm/lib/Target/XCore/
DXCoreISelLowering.cpp959 SDValue Crc(Data.getNode(), 1); in LowerINTRINSIC_WO_CHAIN() local
960 SDValue Results[] = { Crc, Data }; in LowerINTRINSIC_WO_CHAIN()