Searched defs:Crc (Results 1 - 12 of 12) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/test/
H A Dexamples.py3 from crcmod import Crc namespace
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(g6
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python2/crcmod/
H A Dpredefined.py31 crcmod.predefined.Crc is an alias for crcmod.predefined.PredefinedCrc
146 class PredefinedCrc(crcmod.Crc):
149 crcmod.Crc.__init__(self, poly=definition['poly'], initCrc=definition['init'], rev=definition['reverse'], xorOut=definition['xor_out'])
152 # crcmod.predefined.Crc is an alias for crcmod.predefined.PredefinedCrc
153 Crc = PredefinedCrc variable
H A Dcrcmod.py28 Crc -- a class that creates instances providing the same interface as the
37 __all__ = '''mkCrcFun Crc
53 class Crc: class in inherits:
58 for examples of how to use a Crc instance.
60 The string representation of a Crc instance identifies the polynomial,
66 language, subclass Crc and override the generateCode method.
119 '''Create a new instance of the Crc class initialized to the same
124 n = Crc(poly=None, initialize=False)
138 '''Create a new instance of the Crc class initialized to the same
H A Dtest.py30 from crcmod import mkCrcFun, Crc namespace
353 """Verify the Crc class"""
359 crc = Crc(g32)
391 crc = Crc(g32, initCrc=0, xorOut= ~0L)
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/
H A Dpredefined.py31 crcmod.predefined.Crc is an alias for crcmod.predefined.PredefinedCrc
146 class PredefinedCrc(crcmod.Crc):
152 # crcmod.predefined.Crc is an alias for crcmod.predefined.PredefinedCrc
153 Crc = PredefinedCrc variable
H A Dcrcmod.py28 Crc -- a class that creates instances providing the same interface as the
38 __all__ = '''mkCrcFun Crc
54 class Crc: class in inherits:
59 this module for examples of how to use a Crc instance.
61 The string representation of a Crc instance identifies the polynomial,
67 language, subclass Crc and override the generateCode method.
120 '''Create a new instance of the Crc class initialized to the same
125 n = Crc(poly=None, initialize=False)
139 '''Create a new instance of the Crc class initialized to the same
H A Dtest.py31 from .crcmod import mkCrcFun, Crc namespace
342 """Verify the Crc class"""
348 crc = Crc(g32)
380 crc = Crc(g32, initCrc=0, xorOut= ~0)
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod_osx/crcmod/
H A Dpredefined.py31 crcmod.predefined.Crc is an alias for crcmod.predefined.PredefinedCrc
146 class PredefinedCrc(crcmod.Crc):
149 crcmod.Crc.__init__(self, poly=definition['poly'], initCrc=definition['init'], rev=definition['reverse'], xorOut=definition['xor_out'])
152 # crcmod.predefined.Crc is an alias for crcmod.predefined.PredefinedCrc
153 Crc = PredefinedCrc variable
H A Dcrcmod.py28 Crc -- a class that creates instances providing the same interface as the
37 __all__ = '''mkCrcFun Crc
53 class Crc: class in inherits:
58 for examples of how to use a Crc instance.
60 The string representation of a Crc instance identifies the polynomial,
66 language, subclass Crc and override the generateCode method.
119 '''Create a new instance of the Crc class initialized to the same
124 n = Crc(poly=None, initialize=False)
138 '''Create a new instance of the Crc class initialized to the same
H A Dtest.py30 from crcmod import mkCrcFun, Crc namespace
353 """Verify the Crc class"""
359 crc = Crc(g32)
391 crc = Crc(g32, initCrc=0, xorOut= ~0L)
/external/lzma/CPP/7zip/Archive/7z/
H A D7zItem.h156 UInt32 Crc; member in struct:NArchive::N7z::CFileItem
/external/lzma/CPP/7zip/UI/Common/
H A DBench.cpp230 UInt32 Crc; member in class:CBenchmarkOutStream
235 Crc = CRC_INIT_VAL;
253 Crc = CrcUpdate(Crc, data, curSize);
271 UInt32 Crc; member in class:CCrcOutStream
275 void Init() { Crc = CRC_INIT_VAL; }
282 Crc = CrcUpdate(Crc, data, size);
883 UInt32 crcNew = CRC_GET_DIGEST(outStreamSpec->Crc);
994 if (crcOutStreamSpec->CalcCrc && CRC_GET_DIGEST(crcOutStreamSpec->Crc) !
[all...]

Completed in 410 milliseconds