Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dlongobject.c807 twodigits thisbyte = *p; in _PyLong_FromByteArray() local
810 thisbyte = (0xff ^ thisbyte) + carry; in _PyLong_FromByteArray()
811 carry = thisbyte >> 8; in _PyLong_FromByteArray()
812 thisbyte &= 0xff; in _PyLong_FromByteArray()
817 accum |= thisbyte << accumbits; in _PyLong_FromByteArray()