Home
last modified time | relevance | path

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

12345678910>>...37

/dports/graphics/dynamechs/dynamechs_4.0pre1/dm/
H A DdmPrismaticLink.cpp182 Iz[0][0] += tF[0][0] + tG[0][0] + tG[0][0]; in scongtxToInboardIrefl()
183 Iz[0][1] += tF[0][1] + tG[0][1] + tG[1][0]; in scongtxToInboardIrefl()
184 Iz[0][2] += tG[2][0]; in scongtxToInboardIrefl()
186 Iz[1][1] += tF[1][1] + tG[1][1] + tG[1][1]; in scongtxToInboardIrefl()
187 Iz[1][2] += tG[2][1]; in scongtxToInboardIrefl()
251 tG[0][2] = m_aMDH*I[0][4]; in scongtxToInboardIrefl()
253 tG[1][2] = m_aMDH*I[1][4]; in scongtxToInboardIrefl()
255 tG[2][2] = m_aMDH*I[2][4]; in scongtxToInboardIrefl()
261 I[1][1] += tF[1][1] + tG[1][1] + tG[1][1]; in scongtxToInboardIrefl()
262 I[2][1] = (I[1][2] += tF[1][2] + tG[1][2] + tG[2][1]); in scongtxToInboardIrefl()
[all …]
H A DdmRevoluteLink.cpp120 CartesianTensor tE, tF, tG; in scongtxToInboardIrefl() local
176 tG[0][1] = m_dMDH*Iz[0][3]; in scongtxToInboardIrefl()
182 Iz[0][0] += tF[0][0] + tG[0][0] + tG[0][0]; in scongtxToInboardIrefl()
183 Iz[0][1] += tF[0][1] + tG[0][1] + tG[1][0]; in scongtxToInboardIrefl()
184 Iz[1][1] += tF[1][1] + tG[1][1] + tG[1][1]; in scongtxToInboardIrefl()
250 tG[0][2] = m_aMDH*I[0][4]; in scongtxToInboardIrefl()
252 tG[1][2] = m_aMDH*I[1][4]; in scongtxToInboardIrefl()
254 tG[2][2] = m_aMDH*I[2][4]; in scongtxToInboardIrefl()
260 I[1][1] += tF[1][1] + tG[1][1] + tG[1][1]; in scongtxToInboardIrefl()
261 I[2][1] = (I[1][2] += tF[1][2] + tG[1][2] + tG[2][1]); in scongtxToInboardIrefl()
[all …]
H A DdmZScrewTxLink.cpp226 CartesianTensor tE, tF, tG; in scongtxToInboardIrefl() local
291 tG[j][0] = -m_dMDH*M_inboard[j][4]; in scongtxToInboardIrefl()
292 tG[j][1] = m_dMDH*M_inboard[j][3]; in scongtxToInboardIrefl()
296 M_inboard[0][0] += tF[0][0] + tG[0][0] + tG[0][0]; in scongtxToInboardIrefl()
297 M_inboard[0][1] += tF[0][1] + tG[0][1] + tG[1][0]; in scongtxToInboardIrefl()
298 M_inboard[0][2] += tG[2][0]; in scongtxToInboardIrefl()
300 M_inboard[1][1] += tF[1][1] + tG[1][1] + tG[1][1]; in scongtxToInboardIrefl()
301 M_inboard[1][2] += tG[2][1]; in scongtxToInboardIrefl()
/dports/security/dropbear/dropbear-2020.81/libtomcrypt/src/pk/ecc/
H A Dltc_ecc_mulmod.c39 ecc_point *tG, *M[8]; in ltc_ecc_mulmod() local
78 tG = ltc_ecc_new_point(); in ltc_ecc_mulmod()
83 if ((err = mp_copy(G->x, tG->x)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
84 if ((err = mp_copy(G->y, tG->y)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
85 if ((err = mp_copy(G->z, tG->z)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
87 if ((err = mp_mulmod(G->x, mu, modulus, tG->x)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
88 if ((err = mp_mulmod(G->y, mu, modulus, tG->y)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
89 if ((err = mp_mulmod(G->z, mu, modulus, tG->z)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
96 if ((err = ltc_mp.ecc_ptdbl(tG, M[0], modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
102 if ((err = ltc_mp.ecc_ptadd(M[j-9], tG, M[j-8], modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
[all …]
H A Dltc_ecc_mulmod_timing.c37 ecc_point *tG, *M[3]; in ltc_ecc_mulmod() local
76 tG = ltc_ecc_new_point(); in ltc_ecc_mulmod()
77 …if (tG == NULL) { err = CRYPT_ME… in ltc_ecc_mulmod()
80 if ((err = mp_mulmod(G->x, mu, modulus, tG->x)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
81 if ((err = mp_mulmod(G->y, mu, modulus, tG->y)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
82 if ((err = mp_mulmod(G->z, mu, modulus, tG->z)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
88 if ((err = mp_copy(tG->x, M[0]->x)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
89 if ((err = mp_copy(tG->y, M[0]->y)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
90 if ((err = mp_copy(tG->z, M[0]->z)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
92 if ((err = ltc_mp.ecc_ptdbl(tG, M[1], modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
[all …]
/dports/security/libtomcrypt/libtomcrypt-1.18.2/src/pk/ecc/
H A Dltc_ecc_mulmod.c39 ecc_point *tG, *M[8]; in ltc_ecc_mulmod() local
78 tG = ltc_ecc_new_point(); in ltc_ecc_mulmod()
83 if ((err = mp_copy(G->x, tG->x)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
84 if ((err = mp_copy(G->y, tG->y)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
85 if ((err = mp_copy(G->z, tG->z)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
87 if ((err = mp_mulmod(G->x, mu, modulus, tG->x)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
88 if ((err = mp_mulmod(G->y, mu, modulus, tG->y)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
89 if ((err = mp_mulmod(G->z, mu, modulus, tG->z)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
96 if ((err = ltc_mp.ecc_ptdbl(tG, M[0], modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
102 if ((err = ltc_mp.ecc_ptadd(M[j-9], tG, M[j-8], modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
[all …]
H A Dltc_ecc_mulmod_timing.c37 ecc_point *tG, *M[3]; in ltc_ecc_mulmod() local
76 tG = ltc_ecc_new_point(); in ltc_ecc_mulmod()
77 …if (tG == NULL) { err = CRYPT_ME… in ltc_ecc_mulmod()
80 if ((err = mp_mulmod(G->x, mu, modulus, tG->x)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
81 if ((err = mp_mulmod(G->y, mu, modulus, tG->y)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
82 if ((err = mp_mulmod(G->z, mu, modulus, tG->z)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
88 if ((err = mp_copy(tG->x, M[0]->x)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
89 if ((err = mp_copy(tG->y, M[0]->y)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
90 if ((err = mp_copy(tG->z, M[0]->z)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
92 if ((err = ltc_mp.ecc_ptdbl(tG, M[1], modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
[all …]
/dports/games/wargus/wargus-3.2.0/StormLib/src/libtomcrypt/src/pk/ecc/
H A Dltc_ecc_mulmod.c41 ecc_point *tG, *M[8]; in ltc_ecc_mulmod() local
80 tG = ltc_ecc_new_point(); in ltc_ecc_mulmod()
85 if ((err = mp_copy(G->x, tG->x)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
86 if ((err = mp_copy(G->y, tG->y)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
87 if ((err = mp_copy(G->z, tG->z)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
89 if ((err = mp_mulmod(G->x, mu, modulus, tG->x)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
90 if ((err = mp_mulmod(G->y, mu, modulus, tG->y)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
91 if ((err = mp_mulmod(G->z, mu, modulus, tG->z)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
98 if ((err = ltc_mp.ecc_ptdbl(tG, M[0], modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
104 if ((err = ltc_mp.ecc_ptadd(M[j-9], tG, M[j-8], modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
[all …]
/dports/security/p5-CryptX/CryptX-0.075/src/ltc/pk/ecc/
H A Dltc_ecc_mulmod.c28 ecc_point *tG, *M[8]; in ltc_ecc_mulmod() local
71 tG = ltc_ecc_new_point(); in ltc_ecc_mulmod()
76 if ((err = ltc_ecc_copy_point(G, tG)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
78 if ((err = mp_mulmod(G->x, mu, modulus, tG->x)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
79 if ((err = mp_mulmod(G->y, mu, modulus, tG->y)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
80 if ((err = mp_mulmod(G->z, mu, modulus, tG->z)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
87 if ((err = ltc_mp.ecc_ptdbl(tG, M[0], ma, modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
93 if ((err = ltc_mp.ecc_ptadd(M[j-9], tG, M[j-8], ma, modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
171 if ((err = ltc_ecc_copy_point(tG, R)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
175 if ((err = ltc_mp.ecc_ptadd(R, tG, R, ma, modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
[all …]
H A Dltc_ecc_mulmod_timing.c27 ecc_point *tG, *M[3]; in ltc_ecc_mulmod() local
71 tG = ltc_ecc_new_point(); in ltc_ecc_mulmod()
72 …if (tG == NULL) { err = CRYPT_ME… in ltc_ecc_mulmod()
75 if ((err = mp_mulmod(G->x, mu, modulus, tG->x)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
76 if ((err = mp_mulmod(G->y, mu, modulus, tG->y)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
77 if ((err = mp_mulmod(G->z, mu, modulus, tG->z)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
83 if ((err = ltc_ecc_copy_point(tG, M[0])) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
85 if ((err = ltc_mp.ecc_ptdbl(tG, M[1], ma, modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_mulmod()
138 ltc_ecc_del_point(tG); in ltc_ecc_mulmod()
/dports/biology/samtools/samtools-1.14/test/mpileup/expected/
H A D40.out38 CHROMOSOME_V 34 N 2 tG ?~
44 CHROMOSOME_V 40 N 2 tG @~
50 CHROMOSOME_V 46 N 2 tG D~
56 CHROMOSOME_V 52 N 2 tG C~
62 CHROMOSOME_V 58 N 2 tG C~
68 CHROMOSOME_V 64 N 2 tG C~
74 CHROMOSOME_V 70 N 2 tG C~
80 CHROMOSOME_V 76 N 2 tG C~
H A D41.out1 CHROMOSOME_V 40 N 2 tG @~
7 CHROMOSOME_V 46 N 2 tG D~
13 CHROMOSOME_V 52 N 2 tG C~
19 CHROMOSOME_V 58 N 2 tG C~
/dports/math/e-antic/e-antic-1.0.0-rc.13/libeantic/upstream/antic/nmod_poly/
H A Dgcd.c36 nmod_poly_t tG; in nmod_poly_gcd() local
51 nmod_poly_init2(tG, A->mod.n, FLINT_MIN(lenA, lenB)); in nmod_poly_gcd()
52 g = tG->coeffs; in nmod_poly_gcd()
65 nmod_poly_swap(tG, G); in nmod_poly_gcd()
66 nmod_poly_clear(tG); in nmod_poly_gcd()
H A Dgcd_euclidean.c95 nmod_poly_t tG; in nmod_poly_gcd_euclidean() local
110 nmod_poly_init2(tG, A->mod.n, FLINT_MIN(lenA, lenB)); in nmod_poly_gcd_euclidean()
111 g = tG->coeffs; in nmod_poly_gcd_euclidean()
124 nmod_poly_swap(tG, G); in nmod_poly_gcd_euclidean()
125 nmod_poly_clear(tG); in nmod_poly_gcd_euclidean()
H A Dgcd_hgcd.c98 nmod_poly_t tG; in nmod_poly_gcd_hgcd() local
113 nmod_poly_init2(tG, A->mod.n, FLINT_MIN(lenA, lenB)); in nmod_poly_gcd_hgcd()
114 g = tG->coeffs; in nmod_poly_gcd_hgcd()
127 nmod_poly_swap(tG, G); in nmod_poly_gcd_hgcd()
128 nmod_poly_clear(tG); in nmod_poly_gcd_hgcd()
/dports/math/e-antic/flint2-ae7ec89/nmod_poly/
H A Dgcd.c36 nmod_poly_t tG; in nmod_poly_gcd() local
51 nmod_poly_init2(tG, A->mod.n, FLINT_MIN(lenA, lenB)); in nmod_poly_gcd()
52 g = tG->coeffs; in nmod_poly_gcd()
65 nmod_poly_swap(tG, G); in nmod_poly_gcd()
66 nmod_poly_clear(tG); in nmod_poly_gcd()
H A Dgcd_euclidean.c95 nmod_poly_t tG; in nmod_poly_gcd_euclidean() local
110 nmod_poly_init2(tG, A->mod.n, FLINT_MIN(lenA, lenB)); in nmod_poly_gcd_euclidean()
111 g = tG->coeffs; in nmod_poly_gcd_euclidean()
124 nmod_poly_swap(tG, G); in nmod_poly_gcd_euclidean()
125 nmod_poly_clear(tG); in nmod_poly_gcd_euclidean()
H A Dgcd_hgcd.c98 nmod_poly_t tG; in nmod_poly_gcd_hgcd() local
113 nmod_poly_init2(tG, A->mod.n, FLINT_MIN(lenA, lenB)); in nmod_poly_gcd_hgcd()
114 g = tG->coeffs; in nmod_poly_gcd_hgcd()
127 nmod_poly_swap(tG, G); in nmod_poly_gcd_hgcd()
128 nmod_poly_clear(tG); in nmod_poly_gcd_hgcd()
/dports/math/flint2/flint-2.8.4/nmod_poly/
H A Dgcd.c36 nmod_poly_t tG; in nmod_poly_gcd() local
51 nmod_poly_init2(tG, A->mod.n, FLINT_MIN(lenA, lenB)); in nmod_poly_gcd()
52 g = tG->coeffs; in nmod_poly_gcd()
65 nmod_poly_swap(tG, G); in nmod_poly_gcd()
66 nmod_poly_clear(tG); in nmod_poly_gcd()
H A Dgcd_euclidean.c95 nmod_poly_t tG; in nmod_poly_gcd_euclidean() local
110 nmod_poly_init2(tG, A->mod.n, FLINT_MIN(lenA, lenB)); in nmod_poly_gcd_euclidean()
111 g = tG->coeffs; in nmod_poly_gcd_euclidean()
124 nmod_poly_swap(tG, G); in nmod_poly_gcd_euclidean()
125 nmod_poly_clear(tG); in nmod_poly_gcd_euclidean()
/dports/devel/avr-gdb/gdb-7.3.1/gdb/testsuite/gdb.base/
H A Dstructs.c49 #ifndef tG
50 typedef tF tG; typedef
53 typedef tG tH;
92 struct struct7 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; };
93 struct struct8 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; };
94 struct struct9 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; };
95 struct struct10 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; };
96 struct struct11 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; };
97 struct struct12 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; tL l; };
98 struct struct13 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; tL l; tM m; };
[all …]
/dports/devel/gdb/gdb-11.1/gdb/testsuite/gdb.base/
H A Dstructs.c48 #ifndef tG
49 typedef tF tG; typedef
52 typedef tG tH;
91 struct struct7 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; };
92 struct struct8 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; };
93 struct struct9 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; };
94 struct struct10 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; };
95 struct struct11 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; };
96 struct struct12 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; tL l; };
97 struct struct13 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; tL l; tM m; };
[all …]
/dports/devel/gdb761/gdb-7.6.1/gdb/testsuite/gdb.base/
H A Dstructs.c48 #ifndef tG
49 typedef tF tG; typedef
52 typedef tG tH;
91 struct struct7 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; };
92 struct struct8 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; };
93 struct struct9 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; };
94 struct struct10 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; };
95 struct struct11 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; };
96 struct struct12 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; tL l; };
97 struct struct13 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; tL l; tM m; };
[all …]
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gdb/gdb/testsuite/gdb.base/
H A Dstructs.c52 #ifndef tG
53 typedef tF tG; typedef
56 typedef tG tH;
95 struct struct7 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; };
96 struct struct8 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; };
97 struct struct9 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; };
98 struct struct10 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; };
99 struct struct11 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; };
100 struct struct12 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; tL l; };
101 struct struct13 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; tL l; tM m; };
[all …]
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gdb/gdb/testsuite/gdb.base/
H A Dstructs.c52 #ifndef tG
53 typedef tF tG; typedef
56 typedef tG tH;
95 struct struct7 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; };
96 struct struct8 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; };
97 struct struct9 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; };
98 struct struct10 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; };
99 struct struct11 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; };
100 struct struct12 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; tL l; };
101 struct struct13 {tA a; tB b; tC c; tD d; tE e; tF f; tG g; tH h; tI i; tJ j; tK k; tL l; tM m; };
[all …]

12345678910>>...37