Searched refs:do_twos_comp (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.c641 int do_twos_comp; /* store 2's-comp? is_signed and v < 0 */ local
656 do_twos_comp = 1;
660 do_twos_comp = 0;
680 carry = do_twos_comp ? 1 : 0;
683 if (do_twos_comp) {
699 digit s = do_twos_comp ? thisdigit ^ PyLong_MASK : thisdigit;
722 assert(carry == 0); /* else do_twos_comp and *every* digit was 0 */
727 if (do_twos_comp) {
744 if (sign_bit_set == do_twos_comp)
752 unsigned char signbyte = do_twos_comp
[all...]

Completed in 1704 milliseconds