Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for recvspace (0.15 sec)

  1. src/cmd/internal/obj/util.go

    // hi exclusive (valid registers are lo through hi-1).
    func RegisterRegister(lo, hi int, Rconv func(int) string) {
    	regSpace = append(regSpace, regSet{lo, hi, Rconv})
    }
    
    func Rconv(reg int) string {
    	if reg == REG_NONE {
    		return "NONE"
    	}
    	for i := range regSpace {
    		rs := &regSpace[i]
    		if rs.lo <= reg && reg < rs.hi {
    			return rs.Rconv(reg)
    		}
    	}
    	return fmt.Sprintf("R???%d", reg)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Rcv_ssthresh   uint32
    	Rtt            uint32
    	Rttvar         uint32
    	Snd_ssthresh   uint32
    	Snd_cwnd       uint32
    	Advmss         uint32
    	Reordering     uint32
    	Rcv_rtt        uint32
    	Rcv_space      uint32
    	Total_retrans  uint32
    }
    
    type _Gid_t uint32
    
    type rusage_zos struct {
    	Utime timeval_zos
    	Stime timeval_zos
    }
    
    type Rusage struct {
    	Utime    Timeval
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	tcpinfo.Snd_cwnd = conn.congestionWnd
    	tcpinfo.Advmss = conn.sendMSS        // dummy
    	tcpinfo.Reordering = 0               // dummy
    	tcpinfo.Rcv_rtt = conn.roundTripTime // dummy
    	tcpinfo.Rcv_space = conn.sendMSS     // dummy
    	tcpinfo.Total_retrans = conn.reXmtCount
    
    	svcUnload(&svcNameTable[svc_EZBNMIF4][0], EZBNMIF4)
    
    	return &tcpinfo, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Rtt                  uint32
    	Rttvar               uint32
    	Snd_ssthresh         uint32
    	Snd_cwnd             uint32
    	Advmss               uint32
    	Reordering           uint32
    	Rcv_rtt              uint32
    	Rcv_space            uint32
    	Total_retrans        uint32
    	Pacing_rate          uint64
    	Max_pacing_rate      uint64
    	Bytes_acked          uint64
    	Bytes_received       uint64
    	Segs_out             uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top