HomeSort by: relevance | last modified time | path
    Searched refs:carry (Results 1 - 25 of 644) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/hppa/spmath/
mpyaccu.c 54 int carry; local
58 /* get result of low word add, and check for carry out */
60 carry = 1;
61 else carry = 0;
64 if ((result_hi += (unsigned)temp.rslt_hi + carry) <
mpyaccs.c 53 int carry, sign; local
57 /* get result of low word add, and check for carry out */
59 carry = 1;
60 else carry = 0;
64 result_hi += temp.rslt_hi + carry;
divu.S 76 add quo,quo,quo ; shift msb bit into carry
77 ds rem,dvr,rem ; 1st divide step, if carry
79 addc quo,quo,quo ; shift quo with/into carry
81 addc quo,quo,quo ; shift quo with/into carry
83 addc quo,quo,quo ; shift quo with/into carry
85 addc quo,quo,quo ; shift quo with/into carry
87 addc quo,quo,quo ; shift quo with/into carry
89 addc quo,quo,quo ; shift quo with/into carry
91 addc quo,quo,quo ; shift quo with/into carry
93 addc quo,quo,quo ; shift quo with/into carry
    [all...]
  /src/lib/libc/gdtoa/
sum.c 44 ULong carry, *xc, *xa, *xb, *xe, y; local
56 carry = 0;
63 y = (*xa & 0xffff) + (*xb & 0xffff) + carry;
64 carry = (y & 0x10000) >> 16;
65 z = (*xa++ >> 16) + (*xb++ >> 16) + carry;
66 carry = (z & 0x10000) >> 16;
72 y = (*xa & 0xffff) + carry;
73 carry = (y & 0x10000) >> 16;
74 z = (*xa++ >> 16) + carry;
75 carry = (z & 0x10000) >> 16
    [all...]
dmisc.c 118 ULLong borrow, carry, y, ys; local
120 ULong borrow, carry, y, ys; local
144 carry = 0;
147 ys = *sx++ * (ULLong)q + carry;
148 carry = ys >> 32;
157 ys = (si & 0xffff) * q + carry;
159 carry = zs >> 16;
166 ys = *sx++ * q + carry;
167 carry = ys >> 16;
185 carry = 0
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
udivsi3.c 45 su_int carry = 0; local
48 /* r:q = ((r:q) << 1) | carry */
50 q = (q << 1) | carry;
51 /* carry = 0;
55 * carry = 1;
59 carry = s & 1;
62 q = (q << 1) | carry;
  /src/external/gpl3/gcc.old/dist/libgcc/config/spu/
multi3.c 85 qword carry, total0, total1, total2, total3, total4; local
101 carry = si_cg (part2l, part3h);
102 carry = si_a (carry, si_cg (part3l, part4h));
103 carry = si_a (carry, si_cg (part4l, part5h));
104 carry = si_a (carry, si_cg (part5l, part6h));
105 carry = si_a (carry, si_cg (part6l, part7h))
    [all...]
  /src/external/gpl3/gdb/dist/sim/testsuite/h8300/
biand.s 23 biand #6, r0l ; this should NOT set the carry flag.
25 biand #7, r0l ; this should NOT set the carry flag.
28 orc #1, ccr ; set the carry flag
29 biand #6, r0l ; this should NOT clear the carry flag
34 biand #7, r0l ; this should clear the carry flag
45 biand #6, @r1 ; this should NOT set the carry flag.
47 biand #7, @r1 ; this should NOT set the carry flag.
50 orc #1, ccr ; set the carry flag
51 biand #6, @r1 ; this should NOT clear the carry flag
56 biand #7, @r1 ; this should clear the carry fla
    [all...]
band.s 23 band #7, r0l ; this should NOT set the carry flag.
25 band #6, r0l ; this should NOT set the carry flag.
28 orc #1, ccr ; set the carry flag
29 band #7, r0l ; this should NOT clear the carry flag
34 band #6, r0l ; this should clear the carry flag
45 band #7, @r1 ; this should NOT set the carry flag.
47 band #6, @r1 ; this should NOT set the carry flag.
50 orc #1, ccr ; set the carry flag
51 band #7, @r1 ; this should NOT clear the carry flag
56 band #6, @r1 ; this should clear the carry fla
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/testsuite/h8300/
biand.s 23 biand #6, r0l ; this should NOT set the carry flag.
25 biand #7, r0l ; this should NOT set the carry flag.
28 orc #1, ccr ; set the carry flag
29 biand #6, r0l ; this should NOT clear the carry flag
34 biand #7, r0l ; this should clear the carry flag
45 biand #6, @r1 ; this should NOT set the carry flag.
47 biand #7, @r1 ; this should NOT set the carry flag.
50 orc #1, ccr ; set the carry flag
51 biand #6, @r1 ; this should NOT clear the carry flag
56 biand #7, @r1 ; this should clear the carry fla
    [all...]
band.s 23 band #7, r0l ; this should NOT set the carry flag.
25 band #6, r0l ; this should NOT set the carry flag.
28 orc #1, ccr ; set the carry flag
29 band #7, r0l ; this should NOT clear the carry flag
34 band #6, r0l ; this should clear the carry flag
45 band #7, @r1 ; this should NOT set the carry flag.
47 band #6, @r1 ; this should NOT set the carry flag.
50 orc #1, ccr ; set the carry flag
51 band #7, @r1 ; this should NOT clear the carry flag
56 band #6, @r1 ; this should clear the carry fla
    [all...]
  /src/external/gpl3/binutils/dist/gas/
flonum-mult.c 42 (carry) a .b ... | ... a .b a .b
83 unsigned long carry;
116 carry = 0;
120 work = carry;
121 carry = 0;
136 carry += work >> LITTLENUM_NUMBER_OF_BITS;
139 printf ("work=%08x carry=%04x\n", work, carry);
162 This is where 'carry' should go. */
164 printf ("final carry =%04x\n", carry)
82 unsigned long carry; local
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/
flonum-mult.c 42 (carry) a .b ... | ... a .b a .b
83 unsigned long carry;
116 carry = 0;
120 work = carry;
121 carry = 0;
136 carry += work >> LITTLENUM_NUMBER_OF_BITS;
139 printf ("work=%08x carry=%04x\n", work, carry);
162 This is where 'carry' should go. */
164 printf ("final carry =%04x\n", carry)
82 unsigned long carry; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/bn/asm/
x86-mont.pl 314 $carry="ebp";
317 &lea ($carry,&DWP(1,$num));
321 &and ($carry,1); # see if num is even
324 &or ($carry,"edx");
332 &mov ($carry,"edx");
334 &add ($carry,"eax");
339 &mov (&DWP($frame-4,"esp",$j,4),$carry); # tp[j]=
342 &mov ($carry,"edx");
345 &add ("eax",$carry);
367 &mov ($carry,"edx")
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/bn/asm/
x86-mont.pl 314 $carry="ebp";
317 &lea ($carry,&DWP(1,$num));
321 &and ($carry,1); # see if num is even
324 &or ($carry,"edx");
332 &mov ($carry,"edx");
334 &add ($carry,"eax");
339 &mov (&DWP($frame-4,"esp",$j,4),$carry); # tp[j]=
342 &mov ($carry,"edx");
345 &add ("eax",$carry);
367 &mov ($carry,"edx")
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/asm/
x86-mont.pl 315 $carry="ebp";
318 &lea ($carry,&DWP(1,$num));
322 &and ($carry,1); # see if num is even
325 &or ($carry,"edx");
333 &mov ($carry,"edx");
335 &add ($carry,"eax");
340 &mov (&DWP($frame-4,"esp",$j,4),$carry); # tp[j]=
343 &mov ($carry,"edx");
346 &add ("eax",$carry);
368 &mov ($carry,"edx")
    [all...]
  /src/external/bsd/wpa/dist/src/crypto/
fips_prf_internal.c 23 u32 carry; local
53 carry = 1;
55 carry += xkey[k] + xpos[k];
56 xkey[k] = carry & 0xff;
57 carry >>= 8;
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
ed25519_ref10_fe_51.h 246 uint128_t r0, r1, r2, r3, r4, carry; local
300 carry = r0 >> 51;
301 r1 += carry;
303 carry = r1 >> 51;
304 r2 += carry;
306 carry = r2 >> 51;
307 r3 += carry;
309 carry = r3 >> 51;
310 r4 += carry;
312 carry = r4 >> 51
337 uint128_t r0, r1, r2, r3, r4, carry; local
416 uint128_t r0, r1, r2, r3, r4, carry; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/bn/
bn_mod.c 59 BN_ULONG carry, temp, mask, *rp, *tp = storage; local
74 for (i = 0, ai = 0, bi = 0, carry = 0; i < mtop;) {
76 temp = ((ap[ai] & mask) + carry) & BN_MASK2;
77 carry = (temp < carry);
81 carry += (tp[i] < temp);
88 carry -= bn_sub_words(rp, tp, m->d, mtop);
90 rp[i] = (carry & tp[i]) | (~carry & rp[i]);
140 BN_ULONG borrow, carry, ta, tb, mask, *rp local
    [all...]
rsaz_exp.h 68 BN_ULONG carry,
72 carry -= bn_sub_words(tmp, r, m, num);
73 bn_select_words(r, carry, r /* tmp < 0 */, tmp /* tmp >= 0 */, num);
74 return carry;
  /src/crypto/external/bsd/openssl/dist/crypto/bn/
bn_mod.c 58 BN_ULONG carry, temp, mask, *rp, *tp = storage; local
75 for (i = 0, ai = 0, bi = 0, carry = 0; i < mtop;) {
77 temp = ((ap[ai] & mask) + carry) & BN_MASK2;
78 carry = (temp < carry);
82 carry += (tp[i] < temp);
89 carry -= bn_sub_words(rp, tp, m->d, mtop);
91 rp[i] = (carry & tp[i]) | (~carry & rp[i]);
141 BN_ULONG borrow, carry, ta, tb, mask, *rp local
    [all...]
rsaz_exp.h 69 BN_ULONG carry,
73 carry -= bn_sub_words(tmp, r, m, num);
74 bn_select_words(r, carry, r /* tmp < 0 */, tmp /* tmp >= 0 */, num);
75 return carry;
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/
bn_mod.c 53 BN_ULONG carry, temp, mask, *rp, *tp = storage; local
66 for (i = 0, ai = 0, bi = 0, carry = 0; i < mtop;) {
68 temp = ((ap[ai] & mask) + carry) & BN_MASK2;
69 carry = (temp < carry);
73 carry += (tp[i] < temp);
80 carry -= bn_sub_words(rp, tp, m->d, mtop);
82 rp[i] = (carry & tp[i]) | (~carry & rp[i]);
132 BN_ULONG borrow, carry, ta, tb, mask, *rp local
    [all...]
rsaz_exp.h 52 BN_ULONG carry,
56 carry -= bn_sub_words(tmp, r, m, num);
57 bn_select_words(r, carry, r /* tmp < 0 */, tmp /* tmp >= 0 */, num);
58 return carry;
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
n-fold.c 77 int carry = 0; local
82 x = a[i] + b[i] + carry;
83 carry = x > 0xff;
90 x = left + right + carry;
91 carry = x < left || x < right;
96 x = a[i] + carry;
97 carry = x > 0xff;
101 for (i = len / 4 - 1; carry && i >= 0; i--) {
103 x = left + carry;
104 carry = x < left
    [all...]

Completed in 29 milliseconds

1 2 3 4 5 6 7 8 91011>>