Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for basicMul (0.1 sec)

  1. src/math/big/nat.go

    	}
    	// m > 0
    
    	z = z.make(m + 1)
    	z[m] = mulAddVWW(z[0:m], x, y, r)
    
    	return z.norm()
    }
    
    // basicMul multiplies x and y and leaves the result in z.
    // The (non-normalized) result is placed in z[0 : len(x) + len(y)].
    func basicMul(z, x, y nat) {
    	clear(z[0 : len(x)+len(y)]) // initialize z
    	for i, d := range y {
    		if d != 0 {
    			z[len(x)+i] = addMulVVW(z[i:i+len(x)], x, d)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    Decorator.class package junit.extensions; public synchronized class TestDecorator extends junit.framework.Assert implements junit.framework.Test { protected junit.framework.Test fTest; public void TestDecorator(junit.framework.Test); public void basicRun(junit.framework.TestResult); public int countTestCases(); public void run(junit.framework.TestResult); public String toString(); public junit.framework.Test getTest(); } junit/extensions/TestSetup.class package junit.extensions; public synchronized...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top