/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/test/ |
D | examples.py | 3 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/ |
D | crcmod.rst | 10 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 …
|
D | intro.rst | 18 :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
|
D | crcmod.predefined.rst | 133 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/ |
D | predefined.py | 146 class PredefinedCrc(crcmod.Crc): 149 …crcmod.Crc.__init__(self, poly=definition['poly'], initCrc=definition['init'], rev=definition['rev… 153 Crc = PredefinedCrc variable
|
D | test.py | 30 from crcmod import mkCrcFun, Crc 359 crc = Crc(g32) 391 crc = Crc(g32, initCrc=0, xorOut= ~0L)
|
D | crcmod.py | 53 class Crc: class 124 n = Crc(poly=None, initialize=False)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod_osx/crcmod/ |
D | predefined.py | 146 class PredefinedCrc(crcmod.Crc): 149 …crcmod.Crc.__init__(self, poly=definition['poly'], initCrc=definition['init'], rev=definition['rev… 153 Crc = PredefinedCrc variable
|
D | test.py | 30 from crcmod import mkCrcFun, Crc 359 crc = Crc(g32) 391 crc = Crc(g32, initCrc=0, xorOut= ~0L)
|
D | crcmod.py | 53 class Crc: class 124 n = Crc(poly=None, initialize=False)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/ |
D | predefined.py | 146 class PredefinedCrc(crcmod.Crc): 153 Crc = PredefinedCrc variable
|
D | test.py | 31 from .crcmod import mkCrcFun, Crc 348 crc = Crc(g32) 380 crc = Crc(g32, initCrc=0, xorOut= ~0)
|
D | crcmod.py | 54 class Crc: class 125 n = Crc(poly=None, initialize=False)
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
D | hashing_helper.py | 215 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')
|
D | copy_helper.py | 687 hash_dict['crc32c'] = crcmod.predefined.Crc('crc-32c')
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/ |
D | README | 14 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/ |
D | 7zItem.h | 156 UInt32 Crc; member
|
D | 7zFolderOutStream.cpp | 69 (fi.IsDir || !fi.CrcDefined || !_checkCrc || fi.Crc == _crcStreamSpec->GetCRC()) ? in CloseFileAndSetResult()
|
D | 7zUpdate.cpp | 579 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()
|
D | 7zHandler.cpp | 592 case kpidCRC: if (item.CrcDefined) PropVarEm_Set_UInt32(value, item.Crc); break; in GetProperty()
|
D | 7zIn.cpp | 1412 file.Crc = 0; in ReadHeader() 1420 file.Crc = digests.Vals[sizeIndex]; in ReadHeader()
|
D | 7zOut.cpp | 565 digests.Vals.Add(file.Crc); in WriteHeader()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | Bench.cpp | 230 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/ |
D | hash.py | 151 hash_dict['crc32c'] = crcmod.predefined.Crc('crc-32c')
|
/external/llvm/lib/Target/XCore/ |
D | XCoreISelLowering.cpp | 959 SDValue Crc(Data.getNode(), 1); in LowerINTRINSIC_WO_CHAIN() local 960 SDValue Results[] = { Crc, Data }; in LowerINTRINSIC_WO_CHAIN()
|