mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-07 06:19:30 -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()
|
||
|
|
}
|