Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for Xy (0.03 sec)

  1. src/math/big/alias_test.go

    			return checkAliasingTwoArgs(t, (*big.Int).AndNot, v.Int, x.Int, y.Int)
    		},
    		"Div": func(v, x bigInt, y notZeroInt) bool {
    			return checkAliasingTwoArgs(t, (*big.Int).Div, v.Int, x.Int, y.Int)
    		},
    		"Exp-XY": func(v, x, y bigInt, z notZeroInt) bool {
    			return checkAliasingTwoArgs(t, func(v, x, y *big.Int) *big.Int {
    				return v.Exp(x, y, z.Int)
    			}, v.Int, x.Int, y.Int)
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/edwards25519.go

    	// equivalent points can be represented by different Go values.
    	_ incomparable
    
    	// The point is internally represented in extended coordinates (X, Y, Z, T)
    	// where x = X/Z, y = Y/Z, and xy = T/Z per https://eprint.iacr.org/2008/522.
    	x, y, z, t field.Element
    }
    
    type incomparable [0]func()
    
    func checkInitialized(points ...*Point) {
    	for _, p := range points {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv11-RSA-RC4

    00000010  1f b9 af fe 6a 87 38 d4  d8 b4 f8 1d ad 05 00 15  |....j.8.........|
    00000020  03 02 00 16 54 07 15 34  f4 c3 a2 3e 01 9e 00 cb  |....T..4...>....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/edwards25519_test.go

    		rhs.Multiply(d, &XX).Multiply(&rhs, &YY).Add(&rhs, &ZZZZ)
    		if lhs.Equal(&rhs) != 1 {
    			t.Errorf("X, Y, and Z do not specify a point on the curve\nX = %v\nY = %v\nZ = %v", p.x, p.y, p.z)
    		}
    		// xy = T/Z
    		lhs.Multiply(&p.x, &p.y)
    		rhs.Multiply(&p.z, &p.t)
    		if lhs.Equal(&rhs) != 1 {
    			t.Errorf("point %d is not valid\nX = %v\nY = %v\nZ = %v", i, p.x, p.y, p.z)
    		}
    	}
    }
    
    func TestGenerator(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator.go

    	}
    
    	key := toString(h.Sum(nil)) // skip base64 encoding to save an allocation
    
    	hashPool.Put(h)
    
    	return key
    }
    
    // writeLengthPrefixedString writes s with a length prefix to prevent ambiguities, i.e. "xy" + "z" == "x" + "yz"
    // the length of b is assumed to be 4 (b is mutated by this function to store the length of s)
    func writeLengthPrefixedString(w io.Writer, b []byte, s string) {
    	writeLength(w, b, len(s))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. src/regexp/testdata/re2-search.txt

    "^(?:^(foo|bar|[A-Z])$)$"
    -;-;-;-
    0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1
    "^(?:^(foo|bar|[A-Z])$)"
    -;-;-;-
    0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1
    "(?:^(foo|bar|[A-Z])$)$"
    -;-;-;-
    0-1 0-1;0-1 0-1;0-1 0-1;0-1 0-1
    strings
    ""
    "XY"
    regexps
    "^(foo|bar|[A-Z])$"
    -;-;-;-
    -;-;-;-
    "^(?:^(foo|bar|[A-Z])$)$"
    -;-;-;-
    -;-;-;-
    "^(?:^(foo|bar|[A-Z])$)"
    -;-;-;-
    -;-;-;-
    "(?:^(foo|bar|[A-Z])$)$"
    -;-;-;-
    -;-;-;-
    strings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 42.4K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwiceRejected

    00000190  bd dc 44 fc 58 1d bc 9e  3a 0d 3b 61 13 d6 33 1b  |..D.X...:.;a..3.|
    000001a0  97 a8 67 bf e6 d9 1d 34  69 70 93 4a 6c 28 88 01  |..g....4ip.Jl(..|
    000001b0  01 9d 78 59 c0 58 66 c3  70 e4 ba 74 e6 0f f7 27  |..xY.Xf.p..t...'|
    000001c0  8b dd 05 ac 0d 99 dc e9  c8 2f 16 ee 59 53 91 d7  |........./..YS..|
    000001d0  28 27 db ad 85 e6 d0 72  28 81 31 e1 e7 bf dd 95  |('.....r(.1.....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/runtime/map.go

    	if !evacuated(b) {
    		// TODO: reuse overflow buckets instead of using new ones, if there
    		// is no iterator using the old buckets.  (If !oldIterator.)
    
    		// xy contains the x and y (low and high) evacuation destinations.
    		var xy [2]evacDst
    		x := &xy[0]
    		x.b = (*bmap)(add(h.buckets, oldbucket*uintptr(t.BucketSize)))
    		x.k = add(unsafe.Pointer(x.b), dataOffset)
    		x.e = add(x.k, abi.MapBucketCount*uintptr(t.KeySize))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Server-TLSv13-ExportKeyingMaterial

    000000e0  f6 5e c3 2b fc cc 8c 98  b9 7e 5f de bb 3c 19 9a  |.^.+.....~_..<..|
    000000f0  59 75 e4 5e db 06 64 28  8d 26 88 41 b3 c2 2e 7f  |Yu.^..d(.&.A....|
    00000100  fd 17 78 79 a0 ab 9a 48  7e 3d ef 78 c0 f1 9c 96  |..xy...H~=.x....|
    00000110  b2 21 b1 a8 18 d2 69 25  ad 51 8c 48 0f 66 28 a5  |.!....i%.Q.H.f(.|
    00000120  cf 76 16 c3 68 17 d9 33  f2 1f 5c 5f a1 19 08 e8  |.v..h..3..\_....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPKCS1v15

    00000340  8b 2a ae eb 0e e5 f1 88  ff 3c de f8 ed d7 c3 07  |.*.......<......|
    00000350  05 92 bb e5 6d 15 23 c8  54 19 a6 cf d1 4f e2 b1  |....m.#.T....O..|
    00000360  a3 4d ff 6f 22 32 5b 58  f7 58 c1 9f 58 59 b5 e2  |.M.o"2[X.X..XY..|
    00000370  7b 16 03 03 00 0c 0d 00  00 08 01 01 00 02 04 01  |{...............|
    00000380  00 00 16 03 03 00 04 0e  00 00 00                 |...........|
    >>> Flow 3 (client to server)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top