HomeSort by relevance Sort by last modified time
    Searched refs:PyLong_BASE (Results 1 - 13 of 13) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
longintrepr.h 16 Type 'digit' should be able to hold 2*PyLong_BASE-1, and type 'twodigits'
18 PyLong_BASE*PyLong_BASE-1. x_sub assumes that 'digit' is an unsigned type,
63 #define PyLong_BASE ((digit)1 << PyLong_SHIFT)
64 #define PyLong_MASK ((digit)(PyLong_BASE - 1))
68 #define BASE PyLong_BASE
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
longintrepr.h 16 Type 'digit' should be able to hold 2*PyLong_BASE-1, and type 'twodigits'
18 PyLong_BASE*PyLong_BASE-1. x_sub assumes that 'digit' is an unsigned type,
63 #define PyLong_BASE ((digit)1 << PyLong_SHIFT)
64 #define PyLong_MASK ((digit)(PyLong_BASE - 1))
68 #define BASE PyLong_BASE
  /external/python/cpython2/Include/
longintrepr.h 16 Type 'digit' should be able to hold 2*PyLong_BASE-1, and type 'twodigits'
18 PyLong_BASE*PyLong_BASE-1. x_sub assumes that 'digit' is an unsigned type,
63 #define PyLong_BASE ((digit)1 << PyLong_SHIFT)
64 #define PyLong_MASK ((digit)(PyLong_BASE - 1))
68 #define BASE PyLong_BASE
  /external/python/cpython3/Include/
longintrepr.h 17 Type 'digit' should be able to hold 2*PyLong_BASE-1, and type 'twodigits'
19 PyLong_BASE*PyLong_BASE-1. x_sub assumes that 'digit' is an unsigned type,
63 #define PyLong_BASE ((digit)1 << PyLong_SHIFT)
64 #define PyLong_MASK ((digit)(PyLong_BASE - 1))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_sys.py 675 PyLong_BASE = 2**sys.long_info.bits_per_digit
676 check(long(PyLong_BASE), size(vh) + 2*self.longdigit)
677 check(long(PyLong_BASE**2-1), size(vh) + 2*self.longdigit)
678 check(long(PyLong_BASE**2), size(vh) + 3*self.longdigit)
  /external/python/cpython2/Lib/test/
test_sys.py 691 PyLong_BASE = 2**sys.long_info.bits_per_digit
692 check(long(PyLong_BASE), vsize('') + 2*self.longdigit)
693 check(long(PyLong_BASE**2-1), vsize('') + 2*self.longdigit)
694 check(long(PyLong_BASE**2), vsize('') + 3*self.longdigit)
  /external/python/cpython3/Objects/
longobject.c 319 if (ival < PyLong_BASE)
1124 if (ival < PyLong_BASE)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
longobject.c 26 * being an internal Python long digit, in base PyLong_BASE).
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
longobject.c 26 * being an internal Python long digit, in base PyLong_BASE).
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
longobject.c 26 * being an internal Python long digit, in base PyLong_BASE).
    [all...]
  /external/python/cpython2/Objects/
longobject.c 15 * being an internal Python long digit, in base PyLong_BASE).
    [all...]
  /external/python/cpython3/Lib/test/
test_sys.py     [all...]
  /external/python/cpython3/Modules/_decimal/
_decimal.c     [all...]

Completed in 1480 milliseconds