gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

sqr.go (208B)


      1 //go:build !riscv64 && !loong64
      2 // +build !riscv64,!loong64
      3 
      4 package mathutil
      5 
      6 import "github.com/remyoudompheng/bigfft"
      7 
      8 func (f *float) sqr() {
      9 	f.n = bigfft.Mul(f.n, f.n)
     10 	f.fracBits *= 2
     11 	f.normalize()
     12 }