Home | History | Annotate | Download | only in docs

Lines Matching full:carryout

1434   unsigned x = ..., y = ..., carryin = ..., carryout;
1435 unsigned sum = __builtin_addc(x, y, carryin, &carryout);
1441 unsigned *x, *y, *z, carryin=0, carryout;
1442 z[0] = __builtin_addc(x[0], y[0], carryin, &carryout);
1443 carryin = carryout;
1444 z[1] = __builtin_addc(x[1], y[1], carryin, &carryout);
1445 carryin = carryout;
1446 z[2] = __builtin_addc(x[2], y[2], carryin, &carryout);
1447 carryin = carryout;
1448 z[3] = __builtin_addc(x[3], y[3], carryin, &carryout);
1454 unsigned short __builtin_addcs (unsigned short x, unsigned short y, unsigned short carryin, unsigned short *carryout);
1455 unsigned __builtin_addc (unsigned x, unsigned y, unsigned carryin, unsigned *carryout);
1456 unsigned long __builtin_addcl (unsigned long x, unsigned long y, unsigned long carryin, unsigned long *carryout);
1457 unsigned long long __builtin_addcll(unsigned long long x, unsigned long long y, unsigned long long carryin, unsigned long long *carryout);
1458 unsigned short __builtin_subcs (unsigned short x, unsigned short y, unsigned short carryin, unsigned short *carryout);
1459 unsigned __builtin_subc (unsigned x, unsigned y, unsigned carryin, unsigned *carryout);
1460 unsigned long __builtin_subcl (unsigned long x, unsigned long y, unsigned long carryin, unsigned long *carryout);
1461 unsigned long long __builtin_subcll(unsigned long long x, unsigned long long y, unsigned long long carryin, unsigned long long *carryout);