Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/math/big/arith_s390x_test.go

    	if hasVX {
    		for _, a := range sumVV {
    			arg := a
    			testFunVV(t, "addVV_novec", addVV_novec, arg)
    
    			arg = argVV{a.z, a.y, a.x, a.c}
    			testFunVV(t, "addVV_novec symmetric", addVV_novec, arg)
    
    			arg = argVV{a.x, a.z, a.y, a.c}
    			testFunVV(t, "subVV_novec", subVV_novec, arg)
    
    			arg = argVV{a.y, a.z, a.x, a.c}
    			testFunVV(t, "subVV_novec symmetric", subVV_novec, arg)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 770 bytes
    - Viewed (0)
  2. src/math/big/arith_test.go

    		testFunVV(t, "addVV_g", addVV_g, arg)
    		testFunVV(t, "addVV", addVV, arg)
    
    		arg = argVV{a.z, a.y, a.x, a.c}
    		testFunVV(t, "addVV_g symmetric", addVV_g, arg)
    		testFunVV(t, "addVV symmetric", addVV, arg)
    
    		arg = argVV{a.x, a.z, a.y, a.c}
    		testFunVV(t, "subVV_g", subVV_g, arg)
    		testFunVV(t, "subVV", subVV, arg)
    
    		arg = argVV{a.y, a.z, a.x, a.c}
    		testFunVV(t, "subVV_g symmetric", subVV_g, arg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 19.9K bytes
    - Viewed (0)
Back to top