Home
last modified time | relevance | path

Searched refs:pdigit (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dlongobject.c1664 digit *pdigit; in long_from_binary_base() local
1690 pdigit = z->ob_digit; in long_from_binary_base()
1697 *pdigit++ = (digit)(accum & PyLong_MASK); in long_from_binary_base()
1698 assert(pdigit - z->ob_digit <= n); in long_from_binary_base()
1706 *pdigit++ = (digit)accum; in long_from_binary_base()
1707 assert(pdigit - z->ob_digit <= n); in long_from_binary_base()
1709 while (pdigit - z->ob_digit < n) in long_from_binary_base()
1710 *pdigit++ = 0; in long_from_binary_base()
/external/python/cpython3/Objects/
Dlongobject.c2025 digit *pdigit; in long_from_binary_base() local
2071 pdigit = z->ob_digit; in long_from_binary_base()
2082 *pdigit++ = (digit)(accum & PyLong_MASK); in long_from_binary_base()
2083 assert(pdigit - z->ob_digit <= n); in long_from_binary_base()
2091 *pdigit++ = (digit)accum; in long_from_binary_base()
2092 assert(pdigit - z->ob_digit <= n); in long_from_binary_base()
2094 while (pdigit - z->ob_digit < n) in long_from_binary_base()
2095 *pdigit++ = 0; in long_from_binary_base()