mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2026-01-02 01:03:15 -06:00
9 lines
114 B
Go
9 lines
114 B
Go
// +build riscv64
|
|
|
|
package mathutil
|
|
|
|
func (f *float) sqr() {
|
|
f.n.Mul(f.n, f.n)
|
|
f.fracBits *= 2
|
|
f.normalize()
|
|
}
|