mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-09 23:40: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()
|
|
}
|