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

/barrelfish-master/lib/gdtoa/
H A Ddmisc.c111 ULLong borrow, carry, y, ys; local
113 ULong borrow, carry, y, ys; local
136 borrow = 0;
142 y = *bx - (ys & 0xffffffffUL) - borrow;
143 borrow = y >> 32 & 1UL;
151 y = (*bx & 0xffff) - (ys & 0xffff) - borrow;
152 borrow = (y & 0x10000) >> 16;
153 z = (*bx >> 16) - (zs & 0xffff) - borrow;
154 borrow = (z & 0x10000) >> 16;
159 y = *bx - (ys & 0xffff) - borrow;
[all...]
H A Dmisc.c533 ULLong borrow, y; local
535 ULong borrow, y; local
565 borrow = 0;
568 y = (ULLong)*xa++ - *xb++ - borrow;
569 borrow = y >> 32 & 1UL;
574 y = *xa++ - borrow;
575 borrow = y >> 32 & 1UL;
581 y = (*xa & 0xffff) - (*xb & 0xffff) - borrow;
582 borrow = (y & 0x10000) >> 16;
583 z = (*xa++ >> 16) - (*xb++ >> 16) - borrow;
[all...]
H A Dstrtodg.c101 ULong borrow = 1, y; local
117 y = *x - borrow;
118 borrow = (y & 0x10000) >> 16;
120 } while(borrow && x < xe);
/barrelfish-master/lib/openssl-1.0.0d/crypto/bn/asm/
H A Darmv4-mont.pl165 mov $ap,$tp @ "borrow" $ap
181 orr $ap,$ap,$np @ ap=borrow?tp:rp
H A Dppc-mont.pl296 or $ap,$ap,$np ; ap=borrow?tp:rp
H A Dppc64-mont.pl873 or $ap,$ap,$np ; ap=borrow?tp:rp
/barrelfish-master/lib/tommath/
H A Dtommath.tex1808 subtraction is used instead. Note the use of the $\gamma$ variable to extract the carry (\textit{also known as the borrow}) within the subtraction
1812 the third bit which will be set to zero after the borrow. After the very first bit has been subtracted $4 - 1 \equiv 0011_2$ will remain, When the
3812 ``borrow'' from the higher digits might leave a negative result. After the multiple of the modulus has been subtracted from $a$ the residue must be

Completed in 63 milliseconds