Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addVW (0.1 sec)

  1. src/math/big/float.go

    		// and it's Below if we truncate (Exact results require no rounding).
    		// For a negative result (z.neg) it is exactly the opposite.
    		z.acc = makeAcc(inc != z.neg)
    
    		if inc {
    			// add 1 to mantissa
    			if addVW(z.mant, z.mant, lsb) != 0 {
    				// mantissa overflow => adjust exponent
    				if z.exp >= MaxExp {
    					// exponent overflow
    					z.form = inf
    					return
    				}
    				z.exp++
    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