mirror of
https://github.com/42wim/matterbridge
synced 2024-11-05 12:00:27 +00:00
11 lines
152 B
Go
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()
|
|
}
|