HomeSort by relevance Sort by last modified time
    Searched refs:crcmod (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python2/crcmod/
__init__.py 2 from crcmod.crcmod import *
3 import crcmod.predefined
6 from crcmod import *
8 __doc__ = crcmod.__doc__
predefined.py 23 crcmod.predefined defines some well-known CRC algorithms.
26 import crcmod.predefined
28 crc32func = crcmod.predefined.mkPredefinedCrcFun("crc-32")
29 crc32class = crcmod.predefined.PredefinedCrc("crc-32")
31 crcmod.predefined.Crc is an alias for crcmod.predefined.PredefinedCrc
36 import crcmod
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.PredefinedCr
    [all...]
test.py 23 '''Unit tests for crcmod functionality'''
30 from crcmod import mkCrcFun, Crc
32 from crcmod.crcmod import _usingExtension
33 from crcmod.predefined import PredefinedCrc
34 from crcmod.predefined import mkPredefinedCrcFun
35 from crcmod.predefined import _crc_definitions as _predefined_crc_definitions
37 from crcmod import _usingExtension
331 This test compares the CRC-32 implementation of this crcmod module to
341 """Compare various CRCs of this crcmod module to a pur
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/
__init__.py 2 from crcmod.crcmod import *
3 import crcmod.predefined
6 from crcmod import *
8 __doc__ = crcmod.__doc__
predefined.py 23 crcmod.predefined defines some well-known CRC algorithms.
26 import crcmod.predefined
28 crc32func = crcmod.predefined.mkPredefinedCrcFun("crc-32")
29 crc32class = crcmod.predefined.PredefinedCrc("crc-32")
31 crcmod.predefined.Crc is an alias for crcmod.predefined.PredefinedCrc
36 import crcmod
146 class PredefinedCrc(crcmod.Crc):
152 # crcmod.predefined.Crc is an alias for crcmod.predefined.PredefinedCr
    [all...]
crcmod.py 23 '''crcmod is a Python module for gererating objects that compute the Cyclic
45 import crcmod._crcfunext as _crcfun
48 import crcmod._crcfunpy as _crcfun
test.py 23 '''Unit tests for crcmod functionality'''
31 from .crcmod import mkCrcFun, Crc
32 from .crcmod import _usingExtension
320 This test compares the CRC-32 implementation of this crcmod module to
330 """Compare various CRCs of this crcmod module to a pure
  /external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod_osx/crcmod/
__init__.py 2 from crcmod.crcmod import *
3 import crcmod.predefined
6 from crcmod import *
8 __doc__ = crcmod.__doc__
predefined.py 23 crcmod.predefined defines some well-known CRC algorithms.
26 import crcmod.predefined
28 crc32func = crcmod.predefined.mkPredefinedCrcFun("crc-32")
29 crc32class = crcmod.predefined.PredefinedCrc("crc-32")
31 crcmod.predefined.Crc is an alias for crcmod.predefined.PredefinedCrc
36 import crcmod
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.PredefinedCr
    [all...]
test.py 23 '''Unit tests for crcmod functionality'''
30 from crcmod import mkCrcFun, Crc
32 from crcmod.crcmod import _usingExtension
33 from crcmod.predefined import PredefinedCrc
34 from crcmod.predefined import mkPredefinedCrcFun
35 from crcmod.predefined import _crc_definitions as _predefined_crc_definitions
37 from crcmod import _usingExtension
331 This test compares the CRC-32 implementation of this crcmod module to
341 """Compare various CRCs of this crcmod module to a pur
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/test/
test_crcmod.py 4 import crcmod.test
6 unittest.main(module=crcmod.test)
examples.py 3 from crcmod import Crc
  /external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/docs/source/
make_predefined_table.py 6 import crcmod.predefined
28 for defn in crcmod.predefined._crc_definitions:
29 poly_width = crcmod.crcmod._verifyPoly(defn['poly'])
make.bat 87 echo.^> qcollectiongenerator %BUILDDIR%\qthelp\crcmod.qhcp
89 echo.^> assistant -collectionFile %BUILDDIR%\qthelp\crcmod.ghc
  /external/chromium-trace/catapult/third_party/gsutil/gslib/addlhelp/
crc32c.py 15 """Additional help about CRC32C and installing crcmod."""
34 `crcmod <https://pypi.python.org/pypi/crcmod>`_.
36 The crcmod module contains a pure-Python implementation of CRC32C, but using
38 crcmod, which requires compiling into a binary module for use. gsutil ships
39 with a precompiled crcmod C extension for Mac OS X; for other platforms, see
50 To determine if the compiled version of crcmod is available in your Python
52 "compiled crcmod" entry::
56 compiled crcmod: True
59 If your crcmod library is compiled to a native binary, this value will b
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/
gsutil.py 30 return (getattr(crcmod_module, 'crcmod', None) and
31 getattr(crcmod_module.crcmod, '_usingExtension', None))
88 CRCMOD_PATH = os.path.join(THIRD_PARTY_DIR, 'crcmod', 'python2')
93 import crcmod
95 crcmod = None variable
97 if not UsingCrcmodExtension(crcmod):
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
hash.py 20 import crcmod
54 If you calculate a CRC32c hash for the file without a precompiled crcmod
55 installation, hashing will be very slow. See "gsutil help crcmod" for details.
133 if calc_crc32c and not UsingCrcmodExtension(crcmod):
151 hash_dict['crc32c'] = crcmod.predefined.Crc('crc-32c')
version.py 26 import crcmod
112 'compiled crcmod: {compiled_crcmod}\n'
128 compiled_crcmod=UsingCrcmodExtension(crcmod),
cp.py 356 compiled crcmod (see "gsutil help crcmod") on the machine performing the
357 download. If compiled crcmod is not available, normal download will instead
382 compiled crcmod (see "gsutil help crcmod") on every machine where objects are
387 distributions to get crcmod included with the stock distribution. Once that is
407 Note that the crcmod problem only impacts downloads via Python applications
409 other Python applications can install crcmod, it makes sense to enable
453 download the object to have crcmod installed, as noted earlier). For details
    [all...]
config.py 300 # TODO: Once compiled crcmod is being distributed by major Linux distributions
436 # using composite objects requires a compiled crcmod (see "gsutil help crcmod"),
439 # Linux distributions to get crcmod included with the stock distribution. Once
487 # and are unable to install crcmod with the C-extension. CRC32c is the only
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
hashing_helper.py 23 import crcmod
33 WARNING: You have requested checksumming but your crcmod installation isn't
36 $ gsutil help crcmod
42 CRC32c, but your crcmod installation isn't using the module's C extension,
45 $ gsutil help crcmod
52 but your crcmod installation isn't using the module's C extension, so the
56 $ gsutil help crcmod
58 To download regardless of crcmod performance or to skip slow integrity
66 WARNING: This download will not be validated since your crcmod installation
70 $ gsutil help crcmod
    [all...]
util.py 177 def UsingCrcmodExtension(crcmod):
179 (getattr(crcmod, 'crcmod', None) and
180 getattr(crcmod.crcmod, '_usingExtension', None)))
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
util.py 29 import crcmod
249 if not RUN_S3_TESTS and UsingCrcmodExtension(crcmod):
test_cp.py 38 import crcmod
    [all...]
test_rsync.py 19 import crcmod
284 @unittest.skipUnless(UsingCrcmodExtension(crcmod),
285 'Test requires fast crcmod.')
397 @unittest.skipUnless(UsingCrcmodExtension(crcmod),
398 'Test requires fast crcmod.')
521 @unittest.skipUnless(UsingCrcmodExtension(crcmod),
522 'Test requires fast crcmod.')
    [all...]

Completed in 328 milliseconds

1 2