Searched defs:thisbyte (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.c598 twodigits thisbyte = *p; local
601 thisbyte = (0xff ^ thisbyte) + carry;
602 carry = thisbyte >> 8;
603 thisbyte &= 0xff;
605 /* Because we're going LSB to MSB, thisbyte is
608 accum |= (twodigits)thisbyte << accumbits;

Completed in 45 milliseconds