Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 157 for Msglen (0.39 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/generated.pb.go

    			}
    			var msglen int
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				msglen |= int(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    			if msglen < 0 {
    				return ErrInvalidLengthGenerated
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go

    	SizeofIPv6MTUInfo      = 0x20
    	SizeofMsghdr           = 0x1c
    	SizeofCmsghdr          = 0xc
    	SizeofICMPv6Filter     = 0x20
    )
    
    const (
    	SizeofIfMsghdr = 0x10
    )
    
    type IfMsgHdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Addrlen uint8
    	_       [1]byte
    }
    
    type FdSet struct {
    	Bits [2048]int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    	SizeofIPv6MTUInfo      = 0x20
    	SizeofMsghdr           = 0x30
    	SizeofCmsghdr          = 0xc
    	SizeofICMPv6Filter     = 0x20
    )
    
    const (
    	SizeofIfMsghdr = 0x10
    )
    
    type IfMsgHdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Addrlen uint8
    	_       [1]byte
    }
    
    type FdSet struct {
    	Bits [1024]int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"IfmaMsghdr.Index", Field, 0},
    		{"IfmaMsghdr.Msglen", Field, 0},
    		{"IfmaMsghdr.Pad_cgo_0", Field, 0},
    		{"IfmaMsghdr.Type", Field, 0},
    		{"IfmaMsghdr.Version", Field, 0},
    		{"IfmaMsghdr2", Type, 0},
    		{"IfmaMsghdr2.Addrs", Field, 0},
    		{"IfmaMsghdr2.Flags", Field, 0},
    		{"IfmaMsghdr2.Index", Field, 0},
    		{"IfmaMsghdr2.Msglen", Field, 0},
    		{"IfmaMsghdr2.Pad_cgo_0", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. src/syscall/js/js_test.go

    			src := make([]byte, tt.srcLen)
    			if tt.srcLen >= 2 {
    				src[1] = 42
    			}
    			dst := js.Global().Get("Uint8Array").New(tt.dstLen)
    
    			if got, want := js.CopyBytesToJS(dst, src), tt.copyLen; got != want {
    				t.Errorf("copied %d, want %d", got, want)
    			}
    			if tt.dstLen >= 2 {
    				if got, want := dst.Index(1).Int(), 42; got != want {
    					t.Errorf("got %d, want %d", got, want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. src/internal/xcoff/file.go

    	if _, err := s.sr.Seek(0, io.SeekStart); err != nil {
    		return nil, err
    	}
    	var stlen uint32
    	var stoff uint64
    	var nsyms uint32
    	var symoff uint64
    	switch f.TargetMachine {
    	case U802TOCMAGIC:
    		lhdr := new(LoaderHeader32)
    		if err := binary.Read(s.sr, binary.BigEndian, lhdr); err != nil {
    			return nil, err
    		}
    		stlen = lhdr.Lstlen
    		stoff = uint64(lhdr.Lstoff)
    		nsyms = lhdr.Lnsyms
    		symoff = LDHDRSZ_32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/opGen.go

    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagGT_UGT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagGT_ULT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:    "MOVSSconst1",
    		auxType: auxFloat32,
    		argLen:  0,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_unix.go

    // Socket control messages
    
    package unix
    
    import (
    	"unsafe"
    )
    
    // CmsgLen returns the value to store in the Len field of the Cmsghdr
    // structure, taking into account any necessary alignment.
    func CmsgLen(datalen int) int {
    	return cmsgAlignOf(SizeofCmsghdr) + datalen
    }
    
    // CmsgSpace returns the number of bytes an ancillary element with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/syscall/sockcmsg_unix.go

    //go:build unix
    
    // Socket control messages
    
    package syscall
    
    import (
    	"unsafe"
    )
    
    // CmsgLen returns the value to store in the Len field of the [Cmsghdr]
    // structure, taking into account any necessary alignment.
    func CmsgLen(datalen int) int {
    	return cmsgAlignOf(SizeofCmsghdr) + datalen
    }
    
    // CmsgSpace returns the number of bytes an ancillary element with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_zos.go

    // authentication.
    func UnixCredentials(ucred *Ucred) []byte {
    	b := make([]byte, CmsgSpace(SizeofUcred))
    	h := (*Cmsghdr)(unsafe.Pointer(&b[0]))
    	h.Level = SOL_SOCKET
    	h.Type = SCM_CREDENTIALS
    	h.SetLen(CmsgLen(SizeofUcred))
    	*(*Ucred)(h.data(0)) = *ucred
    	return b
    }
    
    // ParseUnixCredentials decodes a socket control message that contains
    // credentials in a Ucred structure. To receive such a message, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top