Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dlongobject.c598 twodigits thisbyte = *p; in _PyLong_FromByteArray() local
601 thisbyte = (0xff ^ thisbyte) + carry; in _PyLong_FromByteArray()
602 carry = thisbyte >> 8; in _PyLong_FromByteArray()
603 thisbyte &= 0xff; in _PyLong_FromByteArray()
608 accum |= (twodigits)thisbyte << accumbits; in _PyLong_FromByteArray()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
Dlongobject.c598 twodigits thisbyte = *p; in _PyLong_FromByteArray() local
601 thisbyte = (0xff ^ thisbyte) + carry; in _PyLong_FromByteArray()
602 carry = thisbyte >> 8; in _PyLong_FromByteArray()
603 thisbyte &= 0xff; in _PyLong_FromByteArray()
608 accum |= (twodigits)thisbyte << accumbits; in _PyLong_FromByteArray()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
Dlongobject.c612 twodigits thisbyte = *p; in _PyLong_FromByteArray() local
615 thisbyte = (0xff ^ thisbyte) + carry; in _PyLong_FromByteArray()
616 carry = thisbyte >> 8; in _PyLong_FromByteArray()
617 thisbyte &= 0xff; in _PyLong_FromByteArray()
622 accum |= (twodigits)thisbyte << accumbits; in _PyLong_FromByteArray()