Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for X__pad0 (0.11 sec)

  1. src/runtime/defs_darwin_arm64.go

    }
    
    type siginfo struct {
    	si_signo  int32
    	si_errno  int32
    	si_code   int32
    	si_pid    int32
    	si_uid    uint32
    	si_status int32
    	si_addr   *byte
    	si_value  [8]byte
    	si_band   int64
    	__pad     [7]uint64
    }
    
    type timeval struct {
    	tv_sec    int64
    	tv_usec   int32
    	pad_cgo_0 [4]byte
    }
    
    func (tv *timeval) set_usec(x int32) {
    	tv.tv_usec = x
    }
    
    type itimerval struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/runtime/defs_darwin_amd64.go

    }
    
    type siginfo struct {
    	si_signo  int32
    	si_errno  int32
    	si_code   int32
    	si_pid    int32
    	si_uid    uint32
    	si_status int32
    	si_addr   uint64
    	si_value  [8]byte
    	si_band   int64
    	__pad     [7]uint64
    }
    
    type timeval struct {
    	tv_sec    int64
    	tv_usec   int32
    	pad_cgo_0 [4]byte
    }
    
    func (tv *timeval) set_usec(x int32) {
    	tv.tv_usec = x
    }
    
    type itimerval struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Stat_t.Qspare", Field, 0},
    		{"Stat_t.Rdev", Field, 0},
    		{"Stat_t.Size", Field, 0},
    		{"Stat_t.Spare", Field, 2},
    		{"Stat_t.Uid", Field, 0},
    		{"Stat_t.X__pad0", Field, 0},
    		{"Stat_t.X__pad1", Field, 0},
    		{"Stat_t.X__pad2", Field, 0},
    		{"Stat_t.X__st_birthtim", Field, 2},
    		{"Stat_t.X__st_ino", Field, 0},
    		{"Stat_t.X__unused", Field, 0},
    		{"Statfs", Func, 0},
    		{"Statfs_t", Type, 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)
  4. src/cmd/cgo/out.go

    			pad := t.Align - off%t.Align
    			fmt.Fprintf(&buf, "\t\tchar __pad%d[%d];\n", off, pad)
    			off += pad
    		}
    		c := t.Typedef
    		if c == "" {
    			c = t.C.String()
    		}
    		fmt.Fprintf(&buf, "\t\t%s p%d;\n", c, i)
    		off += t.Size
    	}
    	if off%p.PtrSize != 0 {
    		pad := p.PtrSize - off%p.PtrSize
    		fmt.Fprintf(&buf, "\t\tchar __pad%d[%d];\n", off, pad)
    		off += pad
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top