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

/device/linaro/bootloader/edk2/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;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
H A Dlongobject.c612 twodigits thisbyte = *p; local
615 thisbyte = (0xff ^ thisbyte) + carry;
616 carry = thisbyte >> 8;
617 thisbyte &= 0xff;
619 /* Because we're going LSB to MSB, thisbyte is
622 accum |= (twodigits)thisbyte << accumbits;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-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 48 milliseconds