Searched refs:thisdigit (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c682 digit thisdigit = v->ob_digit[i]; local
684 thisdigit = (thisdigit ^ PyLong_MASK) + carry;
685 carry = thisdigit >> PyLong_SHIFT;
686 thisdigit &= PyLong_MASK;
688 /* Because we're going LSB to MSB, thisdigit is more
691 accum |= (twodigits)thisdigit << accumbits;
699 digit s = do_twos_comp ? thisdigit ^ PyLong_MASK : thisdigit;

Completed in 336 milliseconds