source:
code/trunk/vendor/modernc.org/mathutil/sqr_std.go@
823
Last change on this file since 823 was 822, checked in by , 22 months ago | |
---|---|
File size: 152 bytes |
Line | |
---|---|
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 | } |
Note:
See TracBrowser
for help on using the repository browser.