Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for 2P (0.06 sec)

  1. src/crypto/internal/nistec/fiat/p224.go

    func (e *P224Element) SetBytes(v []byte) (*P224Element, error) {
    	if len(v) != p224ElementLen {
    		return nil, errors.New("invalid P224Element encoding")
    	}
    
    	// Check for non-canonical encodings (p + k, 2p + k, etc.) by comparing to
    	// the encoding of -1 mod p, so p - 1, the highest canonical encoding.
    	var minusOneEncoding = new(P224Element).Sub(
    		new(P224Element), new(P224Element).One()).Bytes()
    	for i := range v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/fiat/p256.go

    func (e *P256Element) SetBytes(v []byte) (*P256Element, error) {
    	if len(v) != p256ElementLen {
    		return nil, errors.New("invalid P256Element encoding")
    	}
    
    	// Check for non-canonical encodings (p + k, 2p + k, etc.) by comparing to
    	// the encoding of -1 mod p, so p - 1, the highest canonical encoding.
    	var minusOneEncoding = new(P256Element).Sub(
    		new(P256Element), new(P256Element).One()).Bytes()
    	for i := range v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  3. src/math/big/sqrt_test.go

    		{"4.0", "2.0"},
    
    		{"1p512", "1p256"},
    		{"4p1024", "2p512"},
    		{"9p2048", "3p1024"},
    
    		{"1p-1024", "1p-512"},
    		{"4p-2048", "2p-1024"},
    		{"9p-4096", "3p-2048"},
    	} {
    		for _, prec := range []uint{24, 53, 64, 65, 100, 128, 129, 200, 256, 400, 600, 800, 1000} {
    			x := new(Float).SetPrec(prec)
    			x.Parse(test.x, 10)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/p384.go

    func (e *P384Element) SetBytes(v []byte) (*P384Element, error) {
    	if len(v) != p384ElementLen {
    		return nil, errors.New("invalid P384Element encoding")
    	}
    
    	// Check for non-canonical encodings (p + k, 2p + k, etc.) by comparing to
    	// the encoding of -1 mod p, so p - 1, the highest canonical encoding.
    	var minusOneEncoding = new(P384Element).Sub(
    		new(P384Element), new(P384Element).One()).Bytes()
    	for i := range v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/fiat/p521.go

    func (e *P521Element) SetBytes(v []byte) (*P521Element, error) {
    	if len(v) != p521ElementLen {
    		return nil, errors.New("invalid P521Element encoding")
    	}
    
    	// Check for non-canonical encodings (p + k, 2p + k, etc.) by comparing to
    	// the encoding of -1 mod p, so p - 1, the highest canonical encoding.
    	var minusOneEncoding = new(P521Element).Sub(
    		new(P521Element), new(P521Element).One()).Bytes()
    	for i := range v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv11-ECDHE-ECDSA-AES

    00000020  68 cf 1e d4 e0 b2 7c 78  80 76 18 c7 a5 cf 57 2d  |h.....|x.v....W-|
    00000030  1e 3d 17 b2 ce 44 93 76  38 91 4b d0 7f 09 00 2f  |.=...D.v8.K..../|
    00000040  c2 da c7 32 70 de fd cb  a4 99 90                 |...2p......|
    >>> Flow 5 (client to server)
    00000000  17 03 02 00 30 00 00 00  00 00 00 00 00 00 00 00  |....0...........|
    00000010  00 00 00 00 00 86 40 c2  e7 d4 56 43 6b e0 e4 96  |******@****.***...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/fiat/generate.go

    func (e *{{ .Element }}) SetBytes(v []byte) (*{{ .Element }}, error) {
    	if len(v) != {{ .Prefix }}ElementLen {
    		return nil, errors.New("invalid {{ .Element }} encoding")
    	}
    
    	// Check for non-canonical encodings (p + k, 2p + k, etc.) by comparing to
    	// the encoding of -1 mod p, so p - 1, the highest canonical encoding.
    	var minusOneEncoding = new({{ .Element }}).Sub(
    		new({{ .Element }}), new({{ .Element }}).One()).Bytes()
    	for i := range v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  8. src/fmt/fmt_test.go

    	// %p with pointers
    	{"%p", (*int)(nil), "0x0"},
    	{"%#p", (*int)(nil), "0"},
    	{"%p", &intVar, "0xPTR"},
    	{"%#p", &intVar, "PTR"},
    	{"%p", &array, "0xPTR"},
    	{"%p", &slice, "0xPTR"},
    	{"%8.2p", (*int)(nil), "    0x00"},
    	{"%-20.16p", &intVar, "0xPTR  "},
    	// %p on non-pointers
    	{"%p", make(chan int), "0xPTR"},
    	{"%p", make(map[int]int), "0xPTR"},
    	{"%p", func() {}, "0xPTR"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"7M", decQuantity(7, 6, DecimalSI)},
    		{"6G", decQuantity(6, 9, DecimalSI)},
    		{"5T", decQuantity(5, 12, DecimalSI)},
    		{"40T", decQuantity(4, 13, DecimalSI)},
    		{"300T", decQuantity(3, 14, DecimalSI)},
    		{"2P", decQuantity(2, 15, DecimalSI)},
    		{"1E", decQuantity(1, 18, DecimalSI)},
    
    		// Decimal exponents
    		{"1E-3", decQuantity(1, -3, DecimalExponent)},
    		{"1e3", decQuantity(1, 3, DecimalExponent)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.pbtxt.gz

    �z������B��n�/�iI/9Gܪ|�7?��@�\Z��ID41)w�7ɑkyV�! d����Rę��*!�ΰ[Y���9�&�Ħ�YbY|�ow3[z�u����L���Σ���y\��@ ��:�fg�6�4�j�1�-��rQ�.F$�t'�T��i���i(�3N�Lg�g#�Ť*��e��>zg�+�� 8Z\��@��?K�iG�:-�i�i-�;��� ���� �?��u��Z�� 6Yo�/��V~����Dʶ9ǚr+q|�ُ�2p�}h�{���jN�5���V�b�'�y~.y�[��E�}���R��?Wjl��oE�|F7�͚L����?sXo)v�|��y�9X�,W��d���C�%�1;���65,�����'�(/-#�_"�gw�4�ݤ�2�4R��n)��?�ۡ,�g7�8�4Bb���{勏�|5J�z����Hgc�) �B~ڒ%��ur����(��\8Z���m�ѣɉr��6 !2q L,y��n;��ID2,��Qr� ��)^ �ƥ�� I�p��n~���-�ֿ����6��...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 18:14:27 UTC 2019
    - 195.5K bytes
    - Viewed (0)
Back to top