Symbol: carry2
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1078
int64_t carry2;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1228
carry2 = (s2 + (1 << 20)) >> 21;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1229
s3 += carry2;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1230
s2 -= int64_lshift21(carry2);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1277
carry2 = s2 >> 21;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1278
s3 += carry2;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1279
s2 -= int64_lshift21(carry2);
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1322
carry2 = s2 >> 21;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1323
s3 += carry2;
crypto/krb5/src/plugins/preauth/spake/edwards25519.c
1324
s2 -= int64_lshift21(carry2);
crypto/libecc/src/examples/hash/gostr34_11_94.c
304
u64 tmp, carry1, carry2, _carry;
crypto/libecc/src/examples/hash/gostr34_11_94.c
315
carry2 = (u64)(c < tmp);
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
85
carry2 = (word_t)(out->val[i] < tmp);
crypto/libecc/src/nn/nn_add.c
87
_carry = (word_t)(carry1 | carry2);
crypto/openssl/crypto/ec/curve25519.c
1253
int64_t carry2;
crypto/openssl/crypto/ec/curve25519.c
1289
carry2 = h2 + (1 << 25);
crypto/openssl/crypto/ec/curve25519.c
1290
h3 += carry2 >> 26;
crypto/openssl/crypto/ec/curve25519.c
1291
h2 -= carry2 & kTop38Bits;
crypto/openssl/crypto/ec/curve25519.c
1451
int64_t carry2;
crypto/openssl/crypto/ec/curve25519.c
1474
carry2 = h2 + (1 << 25);
crypto/openssl/crypto/ec/curve25519.c
1475
h3 += carry2 >> 26;
crypto/openssl/crypto/ec/curve25519.c
1476
h2 -= carry2 & kTop38Bits;
crypto/openssl/crypto/ec/curve25519.c
1784
int64_t carry2;
crypto/openssl/crypto/ec/curve25519.c
1818
carry2 = h2 + (1 << 25);
crypto/openssl/crypto/ec/curve25519.c
1819
h3 += carry2 >> 26;
crypto/openssl/crypto/ec/curve25519.c
1820
h2 -= carry2 & kTop38Bits;
crypto/openssl/crypto/ec/curve25519.c
4471
int64_t carry2;
crypto/openssl/crypto/ec/curve25519.c
4499
carry2 = h2 + (1 << 25);
crypto/openssl/crypto/ec/curve25519.c
4500
h3 += carry2 >> 26;
crypto/openssl/crypto/ec/curve25519.c
4501
h2 -= carry2 & kTop38Bits;
crypto/openssl/crypto/ec/curve25519.c
4802
int64_t carry2;
crypto/openssl/crypto/ec/curve25519.c
4952
carry2 = (s2 + (1 << 20)) >> 21;
crypto/openssl/crypto/ec/curve25519.c
4953
s3 += carry2;
crypto/openssl/crypto/ec/curve25519.c
4954
s2 -= carry2 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5001
carry2 = s2 >> 21;
crypto/openssl/crypto/ec/curve25519.c
5002
s3 += carry2;
crypto/openssl/crypto/ec/curve25519.c
5003
s2 -= carry2 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5046
carry2 = s2 >> 21;
crypto/openssl/crypto/ec/curve25519.c
5047
s3 += carry2;
crypto/openssl/crypto/ec/curve25519.c
5048
s2 -= carry2 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5183
int64_t carry2;
crypto/openssl/crypto/ec/curve25519.c
5233
carry2 = (s2 + (1 << 20)) >> 21;
crypto/openssl/crypto/ec/curve25519.c
5234
s3 += carry2;
crypto/openssl/crypto/ec/curve25519.c
5235
s2 -= carry2 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5435
carry2 = (s2 + (1 << 20)) >> 21;
crypto/openssl/crypto/ec/curve25519.c
5436
s3 += carry2;
crypto/openssl/crypto/ec/curve25519.c
5437
s2 -= carry2 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5484
carry2 = s2 >> 21;
crypto/openssl/crypto/ec/curve25519.c
5485
s3 += carry2;
crypto/openssl/crypto/ec/curve25519.c
5486
s2 -= carry2 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
5529
carry2 = s2 >> 21;
crypto/openssl/crypto/ec/curve25519.c
5530
s3 += carry2;
crypto/openssl/crypto/ec/curve25519.c
5531
s2 -= carry2 * (1 << 21);
crypto/openssl/crypto/ec/curve25519.c
846
int64_t carry2;
crypto/openssl/crypto/ec/curve25519.c
874
carry2 = h2 + (1 << 25);
crypto/openssl/crypto/ec/curve25519.c
875
h3 += carry2 >> 26;
crypto/openssl/crypto/ec/curve25519.c
876
h2 -= carry2 & kTop38Bits;