mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 02:42:25 -05:00 
			
		
		
		
	
		
			
	
	
		
			10 lines
		
	
	
	
		
			114 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
	
		
			114 B
		
	
	
	
		
			Go
		
	
	
	
	
	
|  | // +build riscv64 | ||
|  | 
 | ||
|  | package mathutil | ||
|  | 
 | ||
|  | func (f *float) sqr() { | ||
|  | 	f.n.Mul(f.n, f.n) | ||
|  | 	f.fracBits *= 2 | ||
|  | 	f.normalize() | ||
|  | } |