um add modernc/sqlite

This commit is contained in:
2025-07-29 21:30:17 +03:00
parent 74f166e6cf
commit c61bc841e6
1417 changed files with 6322360 additions and 1399 deletions

12
vendor/modernc.org/mathutil/sqr.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
//go:build !riscv64 && !loong64
// +build !riscv64,!loong64
package mathutil
import "github.com/remyoudompheng/bigfft"
func (f *float) sqr() {
f.n = bigfft.Mul(f.n, f.n)
f.fracBits *= 2
f.normalize()
}