source: code/trunk/vendor/modernc.org/mathutil/sqr_std.go@ 823

Last change on this file since 823 was 822, checked in by yakumo.izuru, 22 months ago

Prefer immortal.run over runit and rc.d, use vendored modules
for convenience.

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 152 bytes
Line 
1//go:build riscv64 || loong64
2// +build riscv64 loong64
3
4package mathutil
5
6func (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.