Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for extsh (0.04 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	EXTSWSLI $3, R4, R5             // 7c851ef4
    	EXTSWSLICC $16, R3, R4          // 7c6486f5
    	EXTSB R3, R4                    // 7c640774
    	EXTSBCC R3, R4                  // 7c640775
    	EXTSH R3, R4                    // 7c640734
    	EXTSHCC R3, R4                  // 7c640735
    	EXTSW R3, R4                    // 7c6407b4
    	EXTSWCC R3, R4                  // 7c6407b5
    	RLWMI $7, R3, $4026531855, R6   // 50663f06
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    				exts.AddUint8LengthPrefixed(func(exts *cryptobyte.Builder) {
    					exts.AddBytes([]byte(m.alpnProtocol))
    				})
    			})
    		})
    	}
    	if len(m.scts) > 0 {
    		exts.AddUint16(extensionSCT)
    		exts.AddUint16LengthPrefixed(func(exts *cryptobyte.Builder) {
    			exts.AddUint16LengthPrefixed(func(exts *cryptobyte.Builder) {
    				for _, sct := range m.scts {
    					exts.AddUint16LengthPrefixed(func(exts *cryptobyte.Builder) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    				if err != nil {
    					return nil, err
    				}
    
    				exts = append(exts, pkix.Extension{
    					Id:    oidExtensionReasonCode,
    					Value: reasonBytes,
    				})
    			}
    
    			if len(exts) > 0 {
    				rc.Extensions = exts
    			}
    			revokedCerts[i] = rc
    		}
    	}
    
    	aki, err := asn1.Marshal(authKeyId{Id: issuer.SubjectKeyId})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top