Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dlongintrepr.h47 typedef PY_UINT64_T twodigits; typedef
55 typedef unsigned long twodigits;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dlongintrepr.h47 typedef PY_UINT64_T twodigits; typedef
55 typedef unsigned long twodigits;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dlongobject.c592 twodigits carry = 1; /* for 2's-comp calculation */ in _PyLong_FromByteArray()
593 twodigits accum = 0; /* sliding register */ in _PyLong_FromByteArray()
598 twodigits thisbyte = *p; in _PyLong_FromByteArray()
608 accum |= (twodigits)thisbyte << accumbits; in _PyLong_FromByteArray()
639 twodigits accum; /* sliding register */ in _PyLong_AsByteArray()
691 accum |= (twodigits)thisdigit << accumbits; in _PyLong_AsByteArray()
731 accum |= (~(twodigits)0) << accumbits; in _PyLong_AsByteArray()
1263 twodigits acc = (twodigits)a[i] << d | carry; in v_lshift()
1282 twodigits acc = (twodigits)carry << PyLong_SHIFT | a[i]; in v_rshift()
1298 twodigits rem = 0; in inplace_divrem1()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
Dlongobject.c592 twodigits carry = 1; /* for 2's-comp calculation */ in _PyLong_FromByteArray()
593 twodigits accum = 0; /* sliding register */ in _PyLong_FromByteArray()
598 twodigits thisbyte = *p; in _PyLong_FromByteArray()
608 accum |= (twodigits)thisbyte << accumbits; in _PyLong_FromByteArray()
639 twodigits accum; /* sliding register */ in _PyLong_AsByteArray()
691 accum |= (twodigits)thisdigit << accumbits; in _PyLong_AsByteArray()
731 accum |= (~(twodigits)0) << accumbits; in _PyLong_AsByteArray()
1263 twodigits acc = (twodigits)a[i] << d | carry; in v_lshift()
1282 twodigits acc = (twodigits)carry << PyLong_SHIFT | a[i]; in v_rshift()
1298 twodigits rem = 0; in inplace_divrem1()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
Dlongobject.c606 twodigits carry = 1; /* for 2's-comp calculation */ in _PyLong_FromByteArray()
607 twodigits accum = 0; /* sliding register */ in _PyLong_FromByteArray()
612 twodigits thisbyte = *p; in _PyLong_FromByteArray()
622 accum |= (twodigits)thisbyte << accumbits; in _PyLong_FromByteArray()
653 twodigits accum; /* sliding register */ in _PyLong_AsByteArray()
705 accum |= (twodigits)thisdigit << accumbits; in _PyLong_AsByteArray()
745 accum |= (~(twodigits)0) << accumbits; in _PyLong_AsByteArray()
1277 twodigits acc = (twodigits)a[i] << d | carry; in v_lshift()
1296 twodigits acc = (twodigits)carry << PyLong_SHIFT | a[i]; in v_rshift()
1312 twodigits rem = 0; in inplace_divrem1()
[all …]