Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dlongobject.c926 twodigits thisbyte = *p; in _PyLong_FromByteArray() local
929 thisbyte = (0xff ^ thisbyte) + carry; in _PyLong_FromByteArray()
930 carry = thisbyte >> 8; in _PyLong_FromByteArray()
931 thisbyte &= 0xff; in _PyLong_FromByteArray()
936 accum |= thisbyte << accumbits; in _PyLong_FromByteArray()