Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for addVW (0.02 sec)

  1. src/math/big/arith.go

    	for i := 0; i < len(z) && i < len(x); i++ {
    		zi, cc := bits.Add(uint(x[i]), uint(c), 0)
    		z[i] = Word(zi)
    		c = Word(cc)
    	}
    	return
    }
    
    // addVWlarge is addVW, but intended for large z.
    // The only difference is that we check on every iteration
    // whether we are done with carries,
    // and if so, switch to a much faster copy instead.
    // This is only a good idea for large z,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 20:09:27 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top