HomeSort by relevance Sort by last modified time
    Searched refs:from_bytes (Results 26 - 32 of 32) sorted by null

12

  /external/python/cpython3/Lib/test/test_importlib/
test_util.py 793 actual = int.from_bytes(importlib.util.MAGIC_NUMBER[:2], 'little')
  /external/python/cpython3/Lib/test/
test_audioop.py 9 return [int.from_bytes(data[i: i + width], sys.byteorder, signed=True)
test_types.py 597 self.assertIsInstance(int.__dict__['from_bytes'], types.ClassMethodDescriptorType)
598 self.assertIsInstance(int.from_bytes, types.BuiltinMethodType)
    [all...]
test_enum.py 608 self.assertIs(IntStooges.from_bytes(b'\x00\x03', 'big'), IntStooges.MOE)
610 IntStooges.from_bytes(b'\x00\x05', 'big')
    [all...]
test_inspect.py 426 self.assertEqual(finddoc(int.from_bytes), int.from_bytes.__doc__)
    [all...]
  /external/brotli/research/
brotlidump.py 90 #convert to int: int.from_bytes(..., 'little')
93 return int.from_bytes(
    [all...]
  /external/python/cpython3/Lib/
pickle.py 367 return int.from_bytes(data, byteorder='little', signed=True)
    [all...]

Completed in 1082 milliseconds

12