Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for B3 (0.07 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	MOVQ $128, itr1
    	SUBQ $128, inl
    	LEAQ 128(inp), inp
    
    	MOVO A3, A1; MOVO B3, B1; MOVO C3, C1; MOVO D3, D1
    
    	CMPQ inl, $64
    	JBE  sealSSE128SealHash
    
    	MOVOU (0*16)(inp), A0; MOVOU (1*16)(inp), B0; MOVOU (2*16)(inp), C0; MOVOU (3*16)(inp), D0
    	PXOR  A0, A3; PXOR B0, B3; PXOR C0, C3; PXOR D0, D3
    	MOVOU A3, (8*16)(oup); MOVOU B3, (9*16)(oup); MOVOU C3, (10*16)(oup); MOVOU D3, (11*16)(oup)
    
    	ADDQ $64, itr1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

        server.enqueue(
          MockResponse.Builder()
            .addHeader("Etag", "a")
            .addHeader("Cache-Control: max-age=0")
            .addHeader("A: a1")
            .addHeader("B: b2")
            .addHeader("B: b3")
            .body("abcd")
            .build(),
        )
        server.enqueue(
          MockResponse.Builder()
            .code(HttpURLConnection.HTTP_NOT_MODIFIED)
            .addHeader("B: b4")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </p>
    
    <pre>
    type (
    	A1 = string
    	A2 = A1
    )
    
    type (
    	B1 string
    	B2 B1
    	B3 []B1
    	B4 B3
    )
    </pre>
    
    <p>
    The underlying type of <code>string</code>, <code>A1</code>, <code>A2</code>, <code>B1</code>,
    and <code>B2</code> is <code>string</code>.
    The underlying type of <code>[]B1</code>, <code>B3</code>, and <code>B4</code> is <code>[]B1</code>.
    </p>
    
    <h3 id="Method_sets">Method sets</h3>
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    		uint8(op>>8),
    		uint8(i2),
    		(uint8(b1)<<4)|(uint8(dl1>>8)&0x0F),
    		uint8(dl1),
    		uint8(d1>>12),
    		uint8(op))
    }
    
    func zSMI(op, m1, b3, d3, ri2 uint32, asm *[]byte) {
    	*asm = append(*asm,
    		uint8(op>>8),
    		uint8(m1)<<4,
    		(uint8(b3)<<4)|uint8((d3>>8)&0x0F),
    		uint8(d3),
    		uint8(ri2>>8),
    		uint8(ri2))
    }
    
    // Expected argument values for the instruction formats.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

             7f:0c:41:f8:0b:9c:e8:1f:35:36:60:8d:8c:e0:8e:18:b1:06:
             57:d0:4e:c4:c3:cd:8f:6f:e7:76:02:52:da:03:43:61:2b:b3:
             bf:19:fd:73:0d:6a:0b:b4:b6:cb:a9:6f:70:4e:53:2a:54:07:
             b3:74:fd:85:49:57:5b:23:8d:8c:6b:53:2b:09:e8:41:a5:80:
             3f:69:1b:11:d1:6b:13:35:2e:f9:d6:50:15:d9:91:38:42:43:
             e9:17:af:67:d9:96:a4:d1:6a:4f:cc:b4:a7:8e:48:1f:00:72:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			obj: map[string]interface{}{
    				"listMap": []interface{}{
    					map[string]interface{}{"k": "a1", "v": "b1"},
    					map[string]interface{}{"k": "a2", "v": "b2"},
    					map[string]interface{}{"k": "a3", "v": "b3", "v2": "z"},
    				},
    			},
    			schema: objectTypePtr(map[string]schema.Structural{
    				"listMap": listMapType([]string{"k"}, objectTypePtr(map[string]schema.Structural{
    					"k":  stringType,
    					"v":  stringType,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top