- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for BenchmarkAdd (0.08 sec)
-
lib/fips140/v1.0.0.zip
0/v1.0.0/edwards25519/field/fe_bench_test.go // Copyright (c) 2019 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package field import "testing" func BenchmarkAdd(b *testing.B) { x := new(Element).One() y := new(Element).Add(x, x) b.ResetTimer() for i := 0; i < b.N; i++ { x.Add(x, y) } } func BenchmarkMultiply(b *testing.B) { x := new(Element).One() y := new(Element).Add(x, x) b.ResetTimer() for i := 0;...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)