gtsocial-umbx

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

sqr_std.go (152B)


      1 //go:build riscv64 || loong64
      2 // +build riscv64 loong64
      3 
      4 package mathutil
      5 
      6 func (f *float) sqr() {
      7 	f.n.Mul(f.n, f.n)
      8 	f.fracBits *= 2
      9 	f.normalize()
     10 }