Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for fStruct (0.21 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    type Mode_t uint32
    
    type Timespec struct {
    	Sec  int64
    	Nsec int64
    }
    
    type Timeval struct {
    	Sec  int64
    	Usec int32
    	_    [4]byte
    }
    
    type Timeval32 struct {
    	Sec  int32
    	Usec int32
    }
    
    type Timex struct{}
    
    type Time_t int64
    
    type Tms struct{}
    
    type Utimbuf struct {
    	Actime  int64
    	Modtime int64
    }
    
    type Timezone struct {
    	Minuteswest int32
    	Dsttime     int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go

    	SizeofBpfZbufHeader = 0x20
    )
    
    type BpfVersion struct {
    	Major uint16
    	Minor uint16
    }
    
    type BpfStat struct {
    	Recv uint32
    	Drop uint32
    }
    
    type BpfZbuf struct {
    	Bufa   *byte
    	Bufb   *byte
    	Buflen uint64
    }
    
    type BpfProgram struct {
    	Len   uint32
    	Insns *BpfInsn
    }
    
    type BpfInsn struct {
    	Code uint16
    	Jt   uint8
    	Jf   uint8
    	K    uint32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. test/fixedbugs/bug336.go

    	_ = &T7{&T4{}}
    	_ = &T8{&T4{}}
    	_ = &T9{&T4{}}
    	_ = &T12{&T15{}, &T13{}, &T16{}}
    
    	var (
    		tn    struct{ Next *T11 }
    		tz    struct{ z *struct{ Next *T11 } }
    		tpz   *struct{ z *struct{ Next *T11 } }
    		tppz  **struct{ z *struct{ Next *T11 } }
    		tpppz ***struct{ z *struct{ Next *T11 } }
    		ty    struct {
    			y ***struct{ z *struct{ Next *T11 } }
    		}
    	)
    	tn.Next = &T11{}
    	tz.z = &tn
    	tpz = &tz
    	tppz = &tpz
    	tpppz = &tppz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  4. src/syscall/ztypes_netbsd_arm.go

    	Data   [12]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint32
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  5. src/syscall/ztypes_darwin_arm64.go

    )
    
    type BpfVersion struct {
    	Major uint16
    	Minor uint16
    }
    
    type BpfStat struct {
    	Recv uint32
    	Drop uint32
    }
    
    type BpfProgram struct {
    	Len       uint32
    	Pad_cgo_0 [4]byte
    	Insns     *BpfInsn
    }
    
    type BpfInsn struct {
    	Code uint16
    	Jt   uint8
    	Jf   uint8
    	K    uint32
    }
    
    type BpfHdr struct {
    	Tstamp    Timeval32
    	Caplen    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go

    	Route  [16]uint16
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/conversions1.go

    	var u struct {
    		x struct {
    			x int "bar"
    		} "bar"
    	}
    	s = s
    	s = t // ERRORx `cannot use .* in assignment`
    	s = u // ERRORx `cannot use .* in assignment`
    	s = S(s)
    	s = S(t)
    	s = S(u)
    	t = u // ERRORx `cannot use .* in assignment`
    	t = T(u)
    }
    
    func _() {
    	type E1 struct {
    		x int "foo"
    	}
    	type E2 struct {
    		x int "bar"
    	}
    	type S struct{ x E1 }
    	type T struct {
    		x E2 "foo"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. src/syscall/ztypes_openbsd_ppc64.go

    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [24]int8
    }
    
    type RawSockaddr struct {
    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_386.go

    	Ivsize      uint32
    }
    
    type CryptoReportComp struct {
    	Type [64]int8
    }
    
    type CryptoReportRNG struct {
    	Type     [64]int8
    	Seedsize uint32
    }
    
    type CryptoReportAKCipher struct {
    	Type [64]int8
    }
    
    type CryptoReportKPP struct {
    	Type [64]int8
    }
    
    type CryptoReportAcomp struct {
    	Type [64]int8
    }
    
    type LoopInfo struct {
    	Number           int32
    	Device           uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go

    	Ivsize      uint32
    }
    
    type CryptoReportComp struct {
    	Type [64]int8
    }
    
    type CryptoReportRNG struct {
    	Type     [64]int8
    	Seedsize uint32
    }
    
    type CryptoReportAKCipher struct {
    	Type [64]int8
    }
    
    type CryptoReportKPP struct {
    	Type [64]int8
    }
    
    type CryptoReportAcomp struct {
    	Type [64]int8
    }
    
    type LoopInfo struct {
    	Number           int32
    	Device           uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top