OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PyLong_BASE
(Results
1 - 4
of
4
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
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
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
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
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sys.py
657
PyLong_BASE
= 2**sys.long_info.bits_per_digit
658
check(long(
PyLong_BASE
), vsize('') + 2*self.longdigit)
659
check(long(
PyLong_BASE
**2-1), vsize('') + 2*self.longdigit)
660
check(long(
PyLong_BASE
**2), vsize('') + 3*self.longdigit)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sys.py
657
PyLong_BASE
= 2**sys.long_info.bits_per_digit
658
check(long(
PyLong_BASE
), vsize('') + 2*self.longdigit)
659
check(long(
PyLong_BASE
**2-1), vsize('') + 2*self.longdigit)
660
check(long(
PyLong_BASE
**2), vsize('') + 3*self.longdigit)
Completed in 430 milliseconds