Home | History | Annotate | Download | only in python2.7

Lines Matching full:that

18    PyLong_BASE*PyLong_BASE-1.  x_sub assumes that 'digit' is an unsigned type,
19 and that overflow is handled by taking the result modulo 2**N for some N >
23 - long_pow() requires that PyLong_SHIFT be divisible by 5
25 - PyLong_{As,From}ByteArray require that PyLong_SHIFT be at least 8
27 - long_hash() requires that PyLong_SHIFT is *strictly* less than the number
31 - the long <-> size_t/Py_ssize_t conversion functions expect that
34 - the marshal code currently expects that PyLong_SHIFT is a multiple of 15
50 #define _PyLong_DECIMAL_SHIFT 9 /* max(e such that 10**e fits in a digit) */
58 #define _PyLong_DECIMAL_SHIFT 4 /* max(e such that 10**e fits in a digit) */
72 #error "longobject.c requires that PyLong_SHIFT be divisible by 5"
84 so that ob_digit[0] ... ob_digit[abs(ob_size)-1] are actually available.
87 aware that longs abuse ob_size's sign bit.