Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 670 for big4 (0.05 sec)

  1. src/archive/tar/testdata/writer-big.tar

    Joe Tsai <******@****.***> 1503528984 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 01:35:39 UTC 2017
    - 512 bytes
    - Viewed (0)
  2. src/archive/tar/testdata/writer-big-long.tar

    Joe Tsai <******@****.***> 1503105518 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 22:38:45 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  3. src/archive/tar/testdata/gnu-sparse-big.tar

    Joe Tsai <******@****.***> 1503105518 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 22:38:45 UTC 2017
    - 5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/scale_int_test.go

    		{big.NewInt(500), 3, 0, 1},
    		{big.NewInt(499), 3, 0, 1},
    		{big.NewInt(1), 3, 0, 1},
    		// large scaled value does not lose precision
    		{big.NewInt(0).Sub(maxInt64, bigOne), 1, 0, (math.MaxInt64-1)/10 + 1},
    		// large intermediate result.
    		{big.NewInt(1).Exp(big.NewInt(10), big.NewInt(100), nil), 100, 0, 1},
    
    		// scale up
    		{big.NewInt(0), 0, 3, 0},
    		{big.NewInt(1), 0, 3, 1000},
    		{big.NewInt(1), -3, 0, 1000},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 11 03:04:14 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  5. src/math/big/alias_test.go

    // like
    //
    //	func (v *big.Int) m(x, y *big.Int) *big.Int
    //
    // v, x and y are random Int values. v is randomized even if it will be
    // overwritten to test for improper buffer reuse.
    func checkAliasingTwoArgs(t *testing.T, f func(v, x, y *big.Int) *big.Int, v, x, y *big.Int) bool {
    	x1, y1, v1 := new(big.Int).Set(x), new(big.Int).Set(y), new(big.Int).Set(v)
    
    	// Calculate a reference f(x, y) without aliasing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  6. test/ken/convert.go

    		case ti8*100 + tf32:
    			i8 = int8(v); f32 = float32(i8); w = big(f32)
    		case ti8*100 + tf64:
    			i8 = int8(v); f64 = float64(i8); w = big(f64)
    
    		case tu8*100 + ti8:
    			u8 = uint8(v); i8 = int8(u8); w = big(i8)
    		case tu8*100 + tu8:
    			u8 = uint8(v); u8 = uint8(u8); w = big(u8)
    		case tu8*100 + ti16:
    			u8 = uint8(v); i16 = int16(u8); w = big(i16)
    		case tu8*100 + tu16:
    			u8 = uint8(v); u16 = uint16(u8); w = big(u16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 14.9K bytes
    - Viewed (0)
  7. src/crypto/elliptic/params.go

    func (curve *CurveParams) affineFromJacobian(x, y, z *big.Int) (xOut, yOut *big.Int) {
    	if z.Sign() == 0 {
    		return new(big.Int), new(big.Int)
    	}
    
    	zinv := new(big.Int).ModInverse(z, curve.P)
    	zinvsq := new(big.Int).Mul(zinv, zinv)
    
    	xOut = new(big.Int).Mul(x, zinvsq)
    	xOut.Mod(xOut, curve.P)
    	zinvsq.Mul(zinvsq, zinv)
    	yOut = new(big.Int).Mul(y, zinvsq)
    	yOut.Mod(yOut, curve.P)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/magic_test.go

    		}
    	}
    }
    
    func TestMagicSigned(t *testing.T) {
    	One := new(big.Int).SetInt64(1)
    	for _, n := range [...]uint{8, 16, 32, 64} {
    		TwoNMinusOne := new(big.Int).Lsh(One, n-1)
    		Max := new(big.Int).Sub(TwoNMinusOne, One)
    		Min := new(big.Int).Neg(TwoNMinusOne)
    		for _, c := range [...]int64{
    			3,
    			5,
    			6,
    			7,
    			9,
    			10,
    			11,
    			12,
    			13,
    			14,
    			15,
    			17,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 22:02:07 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_ordinv_test.go

    	}
    
    	// Check inv(1) and inv(N+1) against math/big
    	exp := new(big.Int).ModInverse(big.NewInt(1), N).FillBytes(make([]byte, 32))
    	big.NewInt(1).FillBytes(input)
    	out, err = nistec.P256OrdInverse(input)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(out, exp) {
    		t.Error("unexpected output for inv(1)")
    	}
    	new(big.Int).Add(N, big.NewInt(1)).FillBytes(input)
    	out, err = nistec.P256OrdInverse(input)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. test/fixedbugs/issue9604b.go

    	unop{"-", func(x *big.Int) *big.Int { return new(big.Int).Neg(x) }},
    	unop{"^", func(x *big.Int) *big.Int { return new(big.Int).Not(x) }},
    }
    
    type shiftop struct {
    	name string
    	eval func(x *big.Int, i uint) *big.Int
    }
    
    var shiftops = []shiftop{
    	shiftop{"<<", func(x *big.Int, i uint) *big.Int { return new(big.Int).Lsh(x, i) }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top