1
0
mirror of https://github.com/TwiN/gatus.git synced 2026-02-07 11:48:26 +00:00
Files
gatus/vendor/modernc.org/mathutil/sqr_std.go
2022-12-01 20:19:56 -05:00

11 lines
152 B
Go

//go:build riscv64 || loong64
// +build riscv64 loong64
package mathutil
func (f *float) sqr() {
f.n.Mul(f.n, f.n)
f.fracBits *= 2
f.normalize()
}