Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for setBits64 (0.09 sec)

  1. src/math/big/float.go

    				z.mant[n-1] |= msb
    			}
    		}
    	}
    
    	// zero out trailing bits in least-significant word
    	z.mant[0] &^= lsb - 1
    
    	if debugFloat {
    		z.validate()
    	}
    }
    
    func (z *Float) setBits64(neg bool, x uint64) *Float {
    	if z.prec == 0 {
    		z.prec = 64
    	}
    	z.acc = Exact
    	z.neg = neg
    	if x == 0 {
    		z.form = zero
    		return z
    	}
    	// x != 0
    	z.form = finite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top