Home
last modified time | relevance | path

Searched refs:g2 (Results 1 – 25 of 25) sorted by relevance

/openssl/crypto/bn/asm/
H A Dsparcv8.S62 umul %o3,%g2,%g2
83 umul %o3,%g2,%g2
115 umul %o3,%g2,%g2
127 umul %o3,%g2,%g2
139 umul %o3,%g2,%g2
174 umul %o3,%g2,%g2
175 addcc %g2,%o5,%g2
189 umul %o3,%g2,%g2
216 umul %o3,%g2,%g2
226 umul %o3,%g2,%g2
[all …]
H A Dsparcv8plus.S196 mulx %o3,%g2,%g2
214 mulx %o3,%g2,%g2
240 mulx %o3,%g2,%g2
250 mulx %o3,%g2,%g2
260 mulx %o3,%g2,%g2
297 mulx %o3,%g2,%g2
311 mulx %o3,%g2,%g2
335 mulx %o3,%g2,%g2
343 mulx %o3,%g2,%g2
351 mulx %o3,%g2,%g2
[all …]
H A Dsparcv9-gf2m.pl34 @T=("%g2","%g3");
47 .register %g2,#scratch
H A Dvis3-mont.pl40 .register %g2,#scratch
H A Dsparct4-mont.pl95 .register %g2,#scratch
/openssl/crypto/perlasm/
H A Dsparcv9_modes.pl1020 addcc %g2, %g2, %g2
1023 xor %l7, %g2, %g2
1090 addcc %g2, %g2, %g2
1093 xor %l7, %g2, %g2
1123 addcc %g2, %g2, %g2
1126 xor %l7, %g2, %g2
1222 addcc %g2, %g2, %g2
1225 xor %l7, %g2, %g2
1254 addcc %g2, %g2, %g2
1257 xor %l7, %g2, %g2
[all …]
/openssl/crypto/poly1305/
H A Dpoly1305.c218 u64 g0, g1, g2; in poly1305_emit() local
229 g2 = h2 + (u64)(t >> 64); in poly1305_emit()
232 mask = 0 - (g2 >> 2); in poly1305_emit()
384 u32 g0, g1, g2, g3, g4; in poly1305_emit() local
397 g2 = (u32)(t = (u64)h2 + (t >> 32)); in poly1305_emit()
405 g2 &= mask; in poly1305_emit()
410 h2 = (h2 & mask) | g2; in poly1305_emit()
H A Dpoly1305_base2_44.c139 u64 g0, g1, g2; in poly1305_emit() local
155 g2 = h2 + (u64)(t >> 64); in poly1305_emit()
158 mask = 0 - (g2 >> 2); in poly1305_emit()
H A Dpoly1305_ieee754.c434 u32 g0, g1, g2, g3, g4; in poly1305_emit() local
462 g2 = (u32)(t = h2 + (t >> 32)); in poly1305_emit()
470 g2 &= mask; in poly1305_emit()
475 g2 |= (h2 & mask); in poly1305_emit()
481 g2 = (u32)(t = (u64)g2 + (t >> 32) + nonce[2]); in poly1305_emit()
486 U32TO8(mac + 8, g2); in poly1305_emit()
/openssl/crypto/poly1305/asm/
H A Dpoly1305-armv4.pl343 my ($h0,$h1,$h2,$h3,$h4,$g0,$g1,$g2,$g3)=map("r$_",(3..11));
357 adcs $g2,$h2,#0
375 movne $h2,$g2
376 ldr $g2,[$nonce,#8]
385 adcs $h2,$h2,$g2
1188 adcs $g2,$h2,#0
1200 movne $h2,$g2
1201 ldr $g2,[$nonce,#8]
1208 adcs $h2,$h2,$g2
H A Dpoly1305-sparcv9.pl61 .register %g2,#scratch
/openssl/crypto/ec/
H A Dcurve25519.c448 g3 += g2 >> 51; g2 &= MASK51; in fe51_mul()
453 h[2] = g2; in fe51_mul()
466 uint64_t g2 = f[2]; in fe51_sq()
473 h2 = (u128)g0 * g2; in fe51_sq()
481 h3 += (u128)g1 * g2; in fe51_sq()
489 h4 += (u128)g2 * g2; g2 *= 2; in fe51_sq()
501 g3 += g2 >> 51; g2 &= MASK51; in fe51_sq()
506 h[2] = g2; in fe51_sq()
528 g3 += g2 >> 51; g2 &= MASK51; in fe51_mul121666()
533 h[2] = g2; in fe51_mul121666()
[all …]
/openssl/test/
H A Ddhtest.c41 const BIGNUM *p2, *q2, *g2; in dh_test() local
92 DH_get0_pqg(dh, &p2, &q2, &g2); in dh_test()
95 || !TEST_ptr_eq(g2, g)) in dh_test()
101 || !TEST_ptr_eq(DH_get0_g(dh), g2)) in dh_test()
H A Dec_internal_test.c399 EC_GROUP *g1 = NULL, *g2 = NULL; in ecpkparams_i2d2i_test() local
422 || !TEST_ptr(g2 = d2i_ECPKParameters_fp(fp, NULL))) in ecpkparams_i2d2i_test()
432 EC_GROUP_free(g2); in ecpkparams_i2d2i_test()
H A Dectest.c2270 EC_GROUP *g1 = NULL, *g2 = NULL; in cardinality_test() local
2303 || !TEST_ptr(g2 = (is_binary) ? in cardinality_test()
2308 || !TEST_ptr(g2 = EC_GROUP_new_curve_GFp(g1_p, g1_a, g1_b, ctx)) in cardinality_test()
2310 || !TEST_ptr(g2_gen = EC_POINT_new(g2)) in cardinality_test()
2313 || !TEST_true(EC_GROUP_set_generator(g2, g2_gen, g1_order, NULL)) in cardinality_test()
2314 || !TEST_true(EC_GROUP_get_cofactor(g2, g2_cf, ctx)) in cardinality_test()
2318 || !TEST_true(EC_GROUP_set_generator(g2, g2_gen, g1_order, g2_cf)) in cardinality_test()
2319 || !TEST_true(EC_GROUP_get_cofactor(g2, g2_cf, ctx)) in cardinality_test()
2326 || !TEST_false(EC_GROUP_set_generator(g2, g2_gen, NULL, NULL)) in cardinality_test()
2329 || !TEST_false(EC_GROUP_set_generator(g2, g2_gen, g1_order, NULL)) in cardinality_test()
[all …]
/openssl/crypto/sha/asm/
H A Dsha1-sparcv9.pl38 $rot1m="%g2";
196 .register %g2,#scratch
H A Dsha512-sparcv9.pl118 $T1="%g2";
403 .register %g2,#scratch
/openssl/crypto/md5/asm/
H A Dmd5-sparcv9.pl37 @X=("%o0","%o1","%o2","%o3","%o4","%o5","%o7","%g1","%g2");
212 .register %g2,#scratch
/openssl/crypto/
H A Dsparccpuid.S15 .register %g2,#scratch
121 clr %g2
/openssl/crypto/aes/asm/
H A Daes-sparcv9.pl59 $acc11="%g2";
91 .register %g2,#scratch
H A Daest4-sparcv9.pl100 .register %g2,#scratch
/openssl/crypto/modes/asm/
H A Dghash-sparcv9.pl89 .register %g2,#scratch
/openssl/crypto/des/asm/
H A Ddest4-sparcv9.pl46 .register %g2,#scratch
H A Ddes_enc.m439 .register %g2,#scratch
60 #define global2 %g2
/openssl/crypto/ec/asm/
H A Decp_nistz256-sparcv9.pl44 .register %g2,#scratch
103 my ($rp_real,$ap_real)=("%g2","%g3");
1605 my ($rp_real,$ap_real)=("%g2","%g3");

Completed in 151 milliseconds