Symbol: carry1
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1077
int64_t carry1;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1244
carry1 = (s1 + (1 << 20)) >> 21;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1245
s2 += carry1;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1246
s1 -= int64_lshift21(carry1);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1274
carry1 = s1 >> 21;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1275
s2 += carry1;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1276
s1 -= int64_lshift21(carry1);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1319
carry1 = s1 >> 21;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1320
s2 += carry1;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1321
s1 -= int64_lshift21(carry1);
crypto/libecc/src/examples/hash/gostr34_11_94.c
304
u64 tmp, carry1, carry2, _carry;
crypto/libecc/src/examples/hash/gostr34_11_94.c
313
carry1 = (u64)(tmp < a);
crypto/libecc/src/examples/hash/gostr34_11_94.c
316
_carry = (u64)(carry1 | carry2);
crypto/libecc/src/nn/nn_add.c
63
word_t tmp, carry1, carry2, _carry = WORD(0);
crypto/libecc/src/nn/nn_add.c
83
carry1 = (word_t)(tmp < in1->val[i]);
crypto/libecc/src/nn/nn_add.c
87
_carry = (word_t)(carry1 | carry2);
crypto/openssl/crypto/ec/curve25519.c
1252
int64_t carry1;
crypto/openssl/crypto/ec/curve25519.c
1278
carry1 = h1 + (1 << 24);
crypto/openssl/crypto/ec/curve25519.c
1279
h2 += carry1 >> 25;
crypto/openssl/crypto/ec/curve25519.c
1280
h1 -= carry1 & kTop39Bits;
crypto/openssl/crypto/ec/curve25519.c
1450
int64_t carry1;
crypto/openssl/crypto/ec/curve25519.c
1467
carry1 = h1 + (1 << 24);
crypto/openssl/crypto/ec/curve25519.c
1468
h2 += carry1 >> 25;
crypto/openssl/crypto/ec/curve25519.c
1469
h1 -= carry1 & kTop39Bits;
crypto/openssl/crypto/ec/curve25519.c
1783
int64_t carry1;
crypto/openssl/crypto/ec/curve25519.c
1811
carry1 = h1 + (1 << 24);
crypto/openssl/crypto/ec/curve25519.c
1812
h2 += carry1 >> 25;
crypto/openssl/crypto/ec/curve25519.c
1813
h1 -= carry1 & kTop39Bits;
crypto/openssl/crypto/ec/curve25519.c
4470
int64_t carry1;
crypto/openssl/crypto/ec/curve25519.c
4483
carry1 = h1 + (1 << 24);
crypto/openssl/crypto/ec/curve25519.c
4484
h2 += carry1 >> 25;
crypto/openssl/crypto/ec/curve25519.c
4485
h1 -= carry1 & kTop39Bits;
crypto/openssl/crypto/ec/curve25519.c
4801
int64_t carry1;
crypto/openssl/crypto/ec/curve25519.c
4968
carry1 = (s1 + (1 << 20)) >> 21;
crypto/openssl/crypto/ec/curve25519.c
4969
s2 += carry1;
crypto/openssl/crypto/ec/curve25519.c
4970
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
4998
carry1 = s1 >> 21;
crypto/openssl/crypto/ec/curve25519.c
4999
s2 += carry1;
crypto/openssl/crypto/ec/curve25519.c
5000
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5043
carry1 = s1 >> 21;
crypto/openssl/crypto/ec/curve25519.c
5044
s2 += carry1;
crypto/openssl/crypto/ec/curve25519.c
5045
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5182
int64_t carry1;
crypto/openssl/crypto/ec/curve25519.c
5267
carry1 = (s1 + (1 << 20)) >> 21;
crypto/openssl/crypto/ec/curve25519.c
5268
s2 += carry1;
crypto/openssl/crypto/ec/curve25519.c
5269
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5451
carry1 = (s1 + (1 << 20)) >> 21;
crypto/openssl/crypto/ec/curve25519.c
5452
s2 += carry1;
crypto/openssl/crypto/ec/curve25519.c
5453
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5481
carry1 = s1 >> 21;
crypto/openssl/crypto/ec/curve25519.c
5482
s2 += carry1;
crypto/openssl/crypto/ec/curve25519.c
5483
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5526
carry1 = s1 >> 21;
crypto/openssl/crypto/ec/curve25519.c
5527
s2 += carry1;
crypto/openssl/crypto/ec/curve25519.c
5528
s1 -= carry1 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
845
int64_t carry1;
crypto/openssl/crypto/ec/curve25519.c
858
carry1 = h1 + (1 << 24);
crypto/openssl/crypto/ec/curve25519.c
859
h2 += carry1 >> 25;
crypto/openssl/crypto/ec/curve25519.c
860
h1 -= carry1 & kTop39Bits;