Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for msglen (0.1 sec)

  1. src/cmd/compile/internal/ssa/op.go

    // for each architecture.
    type Op int32
    
    type opInfo struct {
    	name              string
    	reg               regInfo
    	auxType           auxType
    	argLen            int32 // the number of arguments, -1 if variable length
    	asm               obj.As
    	generic           bool      // this is a generic (arch-independent) opcode
    	rematerializeable bool      // this op is rematerializeable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. src/crypto/tls/cipher_suites.go

    // mechanism, as well as the cipher+MAC pair or the AEAD.
    type cipherSuite struct {
    	id uint16
    	// the lengths, in bytes, of the key material needed for each component.
    	keyLen int
    	macLen int
    	ivLen  int
    	ka     func(version uint16) keyAgreement
    	// flags is a bitmask of the suite* values, above.
    	flags  int
    	cipher func(key, iv []byte, isRead bool) any
    	mac    func(key []byte) hash.Hash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/assign.go

    		slice := ir.NewSliceExpr(base.Pos, ir.OSLICE, s, idx, nil, nil)
    		slice.SetType(s.Type())
    		slice.SetBounded(true)
    
    		ir.CurFunc.SetWBPos(n.Pos())
    
    		// instantiate typedslicecopy(typ *type, dstPtr *any, dstLen int, srcPtr *any, srcLen int) int
    		fn := typecheck.LookupRuntime("typedslicecopy", l1.Type().Elem(), l2.Type().Elem())
    		ptr1, len1 := backingArrayPtrLen(cheapExpr(slice, &nodes))
    		ptr2, len2 := backingArrayPtrLen(l2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server.go

    	c := hs.c
    
    	clientMAC, serverMAC, clientKey, serverKey, clientIV, serverIV :=
    		keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
    
    	var clientCipher, serverCipher any
    	var clientHash, serverHash hash.Hash
    
    	if hs.suite.aead == nil {
    		clientCipher = hs.suite.cipher(clientKey, clientIV, true /* for reading */)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/least_request/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/maglev/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/pick_first/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/random/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client.go

    	c := hs.c
    
    	clientMAC, serverMAC, clientKey, serverKey, clientIV, serverIV :=
    		keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
    	var clientCipher, serverCipher any
    	var clientHash, serverHash hash.Hash
    	if hs.suite.cipher != nil {
    		clientCipher = hs.suite.cipher(clientKey, clientIV, false /* not for reading */)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
Back to top