Home
last modified time | relevance | path

Searched refs:big (Results 51 – 75 of 25064) sorted by relevance

12345678910>>...1003

/dports/biology/seaview/seaview/csrc/
H A Dzsockr.c41 sock_gz_r *big; in prepare_sock_gz_r() local
51 big->pos = big->text_buffer; in prepare_sock_gz_r()
52 big->endbuf = big->pos; in prepare_sock_gz_r()
54 big->fd = (SOCKET)sockr; in prepare_sock_gz_r()
69 if(big->pos < big->endbuf) { in z_getc()
70 return *(big->pos++); in z_getc()
72 zs = &(big->stream); in z_getc()
80 lu = recv( big->fd , big->z_buffer, ZBSIZE, 0 ); in z_getc()
82 lu = read( big->fd , big->z_buffer, ZBSIZE ); in z_getc()
96 if(big->pos < big->endbuf) return *(big->pos++); in z_getc()
[all …]
/dports/www/gitea/gitea-1.16.5/vendor/github.com/ProtonMail/go-crypto/bitcurves/
H A Dbitcurve.go83 func (bitCurve *BitCurve) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) {
91 func (bitCurve *BitCurve) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.In…
123 x3 := new(big.Int).Set(r)
130 y3 := new(big.Int).Set(r)
155 func (bitCurve *BitCurve) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
162 func (bitCurve *BitCurve) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) {
175 e := new(big.Int).Mul(big.NewInt(3), a) //3*A
178 x3 := new(big.Int).Mul(big.NewInt(2), d) //2*D
184 y3.Sub(y3, new(big.Int).Mul(big.NewInt(8), c)) //E*(D-X3)-8*C
196 func (bitCurve *BitCurve) ScalarMult(Bx, By *big.Int, k []byte) (*big.Int, *big.Int) {
[all …]
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/ProtonMail/go-crypto/bitcurves/
H A Dbitcurve.go83 func (bitCurve *BitCurve) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) {
91 func (bitCurve *BitCurve) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.In…
123 x3 := new(big.Int).Set(r)
130 y3 := new(big.Int).Set(r)
155 func (bitCurve *BitCurve) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
162 func (bitCurve *BitCurve) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) {
175 e := new(big.Int).Mul(big.NewInt(3), a) //3*A
178 x3 := new(big.Int).Mul(big.NewInt(2), d) //2*D
184 y3.Sub(y3, new(big.Int).Mul(big.NewInt(8), c)) //E*(D-X3)-8*C
196 func (bitCurve *BitCurve) ScalarMult(Bx, By *big.Int, k []byte) (*big.Int, *big.Int) {
[all …]
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/ProtonMail/go-crypto/bitcurves/
H A Dbitcurve.go83 func (bitCurve *BitCurve) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) {
91 func (bitCurve *BitCurve) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.In…
123 x3 := new(big.Int).Set(r)
130 y3 := new(big.Int).Set(r)
155 func (bitCurve *BitCurve) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
162 func (bitCurve *BitCurve) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) {
175 e := new(big.Int).Mul(big.NewInt(3), a) //3*A
178 x3 := new(big.Int).Mul(big.NewInt(2), d) //2*D
184 y3.Sub(y3, new(big.Int).Mul(big.NewInt(8), c)) //E*(D-X3)-8*C
196 func (bitCurve *BitCurve) ScalarMult(Bx, By *big.Int, k []byte) (*big.Int, *big.Int) {
[all …]
/dports/mail/aerc/aerc-0.4.0/vendor/golang.org/x/crypto/bitcurves/
H A Dbitcurve.go83 func (bitCurve *BitCurve) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) {
91 func (bitCurve *BitCurve) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.In…
123 x3 := new(big.Int).Set(r)
130 y3 := new(big.Int).Set(r)
155 func (bitCurve *BitCurve) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
162 func (bitCurve *BitCurve) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) {
175 e := new(big.Int).Mul(big.NewInt(3), a) //3*A
178 x3 := new(big.Int).Mul(big.NewInt(2), d) //2*D
184 y3.Sub(y3, new(big.Int).Mul(big.NewInt(8), c)) //E*(D-X3)-8*C
196 func (bitCurve *BitCurve) ScalarMult(Bx, By *big.Int, k []byte) (*big.Int, *big.Int) {
[all …]
/dports/devel/gitty/gitty-0.3.0/vendor/github.com/ProtonMail/go-crypto/bitcurves/
H A Dbitcurve.go83 func (bitCurve *BitCurve) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) {
91 func (bitCurve *BitCurve) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.In…
123 x3 := new(big.Int).Set(r)
130 y3 := new(big.Int).Set(r)
155 func (bitCurve *BitCurve) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
162 func (bitCurve *BitCurve) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) {
175 e := new(big.Int).Mul(big.NewInt(3), a) //3*A
178 x3 := new(big.Int).Mul(big.NewInt(2), d) //2*D
184 y3.Sub(y3, new(big.Int).Mul(big.NewInt(8), c)) //E*(D-X3)-8*C
196 func (bitCurve *BitCurve) ScalarMult(Bx, By *big.Int, k []byte) (*big.Int, *big.Int) {
[all …]
/dports/math/gap/gap-4.11.0/pkg/CAP-2019.06.07/LogicForCategories/
H A DPropositionsForAbelianCategories.tex19 \alpha:\Mor~|~ & \IsEpimorphism\big( \alpha \big) \\
20 \vdash &\IsIsomorphism\big( \ImageEmbedding( \alpha ) \big)
27 \vdash &\IsEpimorphism\big( \alpha \big)
33 \alpha:\Mor~|~ & \IsEpimorphism\big( \alpha \big) \\
34 \vdash &\IsIsomorphism\big( \AstrictionToCoimage( \alpha ) \big)
41 \vdash &\IsEpimorphism\big( \alpha \big)
47 \alpha:\Mor~|~ & \IsMonomorphism\big( \alpha \big) \\
48 \vdash &\IsIsomorphism\big( \CoimageProjection( \alpha ) \big)
55 \vdash &\IsMonomorphism\big( \alpha \big)
61 \alpha:\Mor~|~ & \IsMonomorphism\big( \alpha \big) \\
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/crypto/secp256k1/
H A Dcurve.go113 return new(big.Int), new(big.Int)
128 func (BitCurve *BitCurve) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) {
146 func (BitCurve *BitCurve) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.In…
178 x3 := new(big.Int).Set(r)
185 y3 := new(big.Int).Set(r)
210 func (BitCurve *BitCurve) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
217 func (BitCurve *BitCurve) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) {
230 e := new(big.Int).Mul(big.NewInt(3), a) //3*A
233 x3 := new(big.Int).Mul(big.NewInt(2), d) //2*D
239 y3.Sub(y3, new(big.Int).Mul(big.NewInt(8), c)) //E*(D-X3)-8*C
[all …]
/dports/converters/p5-Convert-Binary-C/Convert-Binary-C-0.84/tests/include/pdclib/functions/_PDCLIB/
H A D_PDCLIB_bigint2.c37 _PDCLIB_bigint_t big; in main() local
40 TESTCASE( bigptr == &big ); in main()
41 TESTCASE( big.size == 1 ); in main()
43 _PDCLIB_bigint2( &big, 3 ); in main()
44 TESTCASE( big.size == 1 ); in main()
46 _PDCLIB_bigint2( &big, 31 ); in main()
47 TESTCASE( big.size == 1 ); in main()
50 TESTCASE( big.size == 2 ); in main()
54 TESTCASE( big.size == 2 ); in main()
58 TESTCASE( big.size == 2 ); in main()
[all …]
/dports/lang/gomacro/gomacro-2.7-304-g2f4dc7c/imports/
H A Dcrypto_elliptic.go35 …Add_ func(_proxy_obj_ interface{}, x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int…
36 Double_ func(_proxy_obj_ interface{}, x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int)
37 IsOnCurve_ func(_proxy_obj_ interface{}, x *big.Int, y *big.Int) bool
39 ScalarBaseMult_ func(_proxy_obj_ interface{}, k []byte) (x *big.Int, y *big.Int)
40 …ScalarMult_ func(_proxy_obj_ interface{}, x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.…
42 func (P *P_crypto_elliptic_Curve) Add(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.I…
45 func (P *P_crypto_elliptic_Curve) Double(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) {
48 func (P *P_crypto_elliptic_Curve) IsOnCurve(x *big.Int, y *big.Int) bool {
54 func (P *P_crypto_elliptic_Curve) ScalarBaseMult(k []byte) (x *big.Int, y *big.Int) {
57 func (P *P_crypto_elliptic_Curve) ScalarMult(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *bi…
H A Dmath_big.go15 "Above": ValueOf(big.Above),
17 "Below": ValueOf(big.Below),
18 "Exact": ValueOf(big.Exact),
19 "Jacobi": ValueOf(big.Jacobi),
20 "MaxBase": ValueOf(big.MaxBase),
21 "MaxExp": ValueOf(big.MaxExp),
23 "MinExp": ValueOf(big.MinExp),
24 "NewFloat": ValueOf(big.NewFloat),
25 "NewInt": ValueOf(big.NewInt),
26 "NewRat": ValueOf(big.NewRat),
[all …]
/dports/devel/yaegi/yaegi-0.9.23/stdlib/
H A Dgo1_17_crypto_elliptic.go39 WAdd func(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int)
40 WDouble func(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int)
41 WIsOnCurve func(x *big.Int, y *big.Int) bool
43 WScalarBaseMult func(k []byte) (x *big.Int, y *big.Int)
44 WScalarMult func(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int)
47 func (W _crypto_elliptic_Curve) Add(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int…
50 func (W _crypto_elliptic_Curve) Double(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) {
53 func (W _crypto_elliptic_Curve) IsOnCurve(x *big.Int, y *big.Int) bool { return W.WIsOnCurve(x, y) }
55 func (W _crypto_elliptic_Curve) ScalarBaseMult(k []byte) (x *big.Int, y *big.Int) {
58 func (W _crypto_elliptic_Curve) ScalarMult(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.…
H A Dgo1_16_crypto_elliptic.go38 WAdd func(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int)
39 WDouble func(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int)
40 WIsOnCurve func(x *big.Int, y *big.Int) bool
42 WScalarBaseMult func(k []byte) (x *big.Int, y *big.Int)
43 WScalarMult func(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int)
46 func (W _crypto_elliptic_Curve) Add(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int…
49 func (W _crypto_elliptic_Curve) Double(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) {
52 func (W _crypto_elliptic_Curve) IsOnCurve(x *big.Int, y *big.Int) bool { return W.WIsOnCurve(x, y) }
54 func (W _crypto_elliptic_Curve) ScalarBaseMult(k []byte) (x *big.Int, y *big.Int) {
57 func (W _crypto_elliptic_Curve) ScalarMult(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.…
/dports/net/traefik/traefik-2.6.1/vendor/github.com/traefik/yaegi/stdlib/
H A Dgo1_17_crypto_elliptic.go39 WAdd func(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int)
40 WDouble func(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int)
41 WIsOnCurve func(x *big.Int, y *big.Int) bool
43 WScalarBaseMult func(k []byte) (x *big.Int, y *big.Int)
44 WScalarMult func(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int)
47 func (W _crypto_elliptic_Curve) Add(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int…
50 func (W _crypto_elliptic_Curve) Double(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) {
53 func (W _crypto_elliptic_Curve) IsOnCurve(x *big.Int, y *big.Int) bool {
59 func (W _crypto_elliptic_Curve) ScalarBaseMult(k []byte) (x *big.Int, y *big.Int) {
62 func (W _crypto_elliptic_Curve) ScalarMult(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.…
H A Dgo1_16_crypto_elliptic.go38 WAdd func(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int)
39 WDouble func(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int)
40 WIsOnCurve func(x *big.Int, y *big.Int) bool
42 WScalarBaseMult func(k []byte) (x *big.Int, y *big.Int)
43 WScalarMult func(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int)
46 func (W _crypto_elliptic_Curve) Add(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int…
49 func (W _crypto_elliptic_Curve) Double(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) {
52 func (W _crypto_elliptic_Curve) IsOnCurve(x *big.Int, y *big.Int) bool {
58 func (W _crypto_elliptic_Curve) ScalarBaseMult(k []byte) (x *big.Int, y *big.Int) {
61 func (W _crypto_elliptic_Curve) ScalarMult(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.…
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/crypto/secp256k1/
H A Dcurve.go131 func (BitCurve *BitCurve) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) {
138 func (BitCurve *BitCurve) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.In…
170 x3 := new(big.Int).Set(r)
177 y3 := new(big.Int).Set(r)
202 func (BitCurve *BitCurve) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
209 func (BitCurve *BitCurve) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) {
222 e := new(big.Int).Mul(big.NewInt(3), a) //3*A
225 x3 := new(big.Int).Mul(big.NewInt(2), d) //2*D
231 y3.Sub(y3, new(big.Int).Mul(big.NewInt(8), c)) //E*(D-X3)-8*C
241 func (BitCurve *BitCurve) ScalarMult(Bx, By *big.Int, scalar []byte) (*big.Int, *big.Int) {
[all …]
/dports/games/supertux2/SuperTux-v0.6.3-Source/data/images/creatures/tux/
H A Dtux.sprite260 (name "big-walk-right")
273 (name "big-walk-left")
295 (images "big/big-walljump-0.png"
296 "big/big-walljump-1.png"
297 "big/big-walljump-2.png"))
313 (name "big-jump-left")
325 (name "big-fall-left")
336 (name "big-skid-left")
346 (name "big-kick-left")
359 (name "big-idle-left")
[all …]
/dports/net/croc/croc-9.5.0/vendor/github.com/tscholl2/siec/
H A Dprojective.go7 func (curve *SIEC255Params) affineToProjective(x, y *big.Int) (X, Y, Z *big.Int) {
8 X, Y, Z = new(big.Int), new(big.Int), new(big.Int)
18 x, y = new(big.Int), new(big.Int)
20 return new(big.Int), new(big.Int)
33 w := new(big.Int)
34 ww := new(big.Int)
69 w := new(big.Int)
70 ww := new(big.Int)
122 w := new(big.Int)
155 func (curve *SIEC255Params) projectiveScalarMult(Bx, By *big.Int, k []byte) (*big.Int, *big.Int) {
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/params/
H A Dconfig.go36 ChainID: big.NewInt(1),
60 ChainID: big.NewInt(3),
61 HomesteadBlock: big.NewInt(0),
64 EIP150Block: big.NewInt(0),
84 ChainID: big.NewInt(4),
114 …hanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, b…
121 …hanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, b…
123 …inConfig = &ChainConfig{big.NewInt(1), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, bi…
352 StoredConfig, NewConfig *big.Int
358 var rew *big.Int
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/libgo/go/crypto/elliptic/
H A Delliptic.go30 Add(x1, y1, x2, y2 *big.Int) (x, y *big.Int)
32 Double(x1, y1 *big.Int) (x, y *big.Int)
76 func zForAffine(x, y *big.Int) *big.Int {
88 return new(big.Int), new(big.Int)
102 func (curve *CurveParams) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) {
110 func (curve *CurveParams) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.In…
112 x3, y3, z3 := new(big.Int), new(big.Int), new(big.Int)
186 func (curve *CurveParams) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
193 func (curve *CurveParams) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) {
251 func (curve *CurveParams) ScalarMult(Bx, By *big.Int, k []byte) (*big.Int, *big.Int) {
[all …]
/dports/lang/gcc8/gcc-8.5.0/libgo/go/crypto/elliptic/
H A Delliptic.go30 Add(x1, y1, x2, y2 *big.Int) (x, y *big.Int)
32 Double(x1, y1 *big.Int) (x, y *big.Int)
76 func zForAffine(x, y *big.Int) *big.Int {
88 return new(big.Int), new(big.Int)
102 func (curve *CurveParams) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) {
110 func (curve *CurveParams) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.In…
112 x3, y3, z3 := new(big.Int), new(big.Int), new(big.Int)
186 func (curve *CurveParams) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
193 func (curve *CurveParams) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) {
251 func (curve *CurveParams) ScalarMult(Bx, By *big.Int, k []byte) (*big.Int, *big.Int) {
[all …]
/dports/net/google-cloud-sdk-app-engine-go/platform/google_appengine/goroot-1.9/src/crypto/elliptic/
H A Delliptic.go30 Add(x1, y1, x2, y2 *big.Int) (x, y *big.Int)
32 Double(x1, y1 *big.Int) (x, y *big.Int)
76 func zForAffine(x, y *big.Int) *big.Int {
88 return new(big.Int), new(big.Int)
102 func (curve *CurveParams) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) {
110 func (curve *CurveParams) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.In…
112 x3, y3, z3 := new(big.Int), new(big.Int), new(big.Int)
186 func (curve *CurveParams) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
193 func (curve *CurveParams) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) {
251 func (curve *CurveParams) ScalarMult(Bx, By *big.Int, k []byte) (*big.Int, *big.Int) {
[all …]
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libgo/go/crypto/elliptic/
H A Delliptic.go30 Add(x1, y1, x2, y2 *big.Int) (x, y *big.Int)
32 Double(x1, y1 *big.Int) (x, y *big.Int)
76 func zForAffine(x, y *big.Int) *big.Int {
88 return new(big.Int), new(big.Int)
102 func (curve *CurveParams) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) {
110 func (curve *CurveParams) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.In…
112 x3, y3, z3 := new(big.Int), new(big.Int), new(big.Int)
186 func (curve *CurveParams) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
193 func (curve *CurveParams) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) {
251 func (curve *CurveParams) ScalarMult(Bx, By *big.Int, k []byte) (*big.Int, *big.Int) {
[all …]
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libgo/go/crypto/elliptic/
H A Delliptic.go30 Add(x1, y1, x2, y2 *big.Int) (x, y *big.Int)
32 Double(x1, y1 *big.Int) (x, y *big.Int)
76 func zForAffine(x, y *big.Int) *big.Int {
88 return new(big.Int), new(big.Int)
102 func (curve *CurveParams) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) {
110 func (curve *CurveParams) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.In…
112 x3, y3, z3 := new(big.Int), new(big.Int), new(big.Int)
186 func (curve *CurveParams) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
193 func (curve *CurveParams) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) {
251 func (curve *CurveParams) ScalarMult(Bx, By *big.Int, k []byte) (*big.Int, *big.Int) {
[all …]
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/libgo/go/crypto/elliptic/
H A Delliptic.go30 Add(x1, y1, x2, y2 *big.Int) (x, y *big.Int)
32 Double(x1, y1 *big.Int) (x, y *big.Int)
76 func zForAffine(x, y *big.Int) *big.Int {
88 return new(big.Int), new(big.Int)
102 func (curve *CurveParams) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) {
110 func (curve *CurveParams) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.In…
112 x3, y3, z3 := new(big.Int), new(big.Int), new(big.Int)
186 func (curve *CurveParams) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
193 func (curve *CurveParams) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) {
251 func (curve *CurveParams) ScalarMult(Bx, By *big.Int, k []byte) (*big.Int, *big.Int) {
[all …]

12345678910>>...1003