Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for WithoutXY (0.08 sec)

  1. src/math/big/gcd_test.go

    	return x.Add(x, n) // make sure result > 1<<(size-1)
    }
    
    func runGCD(b *testing.B, aSize, bSize uint) {
    	if isRaceBuilder && (aSize > 1000 || bSize > 1000) {
    		b.Skip("skipping on race builder")
    	}
    	b.Run("WithoutXY", func(b *testing.B) {
    		runGCDExt(b, aSize, bSize, false)
    	})
    	b.Run("WithXY", func(b *testing.B) {
    		runGCDExt(b, aSize, bSize, true)
    	})
    }
    
    func runGCDExt(b *testing.B, aSize, bSize uint, calcXY bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 19:11:43 UTC 2016
    - 2.2K bytes
    - Viewed (0)
Back to top