Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for callAddr (0.5 sec)

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

    		}
    
    		s.endBlock()
    		s.startBlock(bEnd)
    	}
    }
    
    func (s *state) callResult(n *ir.CallExpr, k callKind) *ssa.Value {
    	return s.call(n, k, false, nil)
    }
    
    func (s *state) callAddr(n *ir.CallExpr, k callKind) *ssa.Value {
    	return s.call(n, k, true, nil)
    }
    
    // Calls the function n using the specified call type.
    // Returns the address of the return value (or nil if none).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Trapno    uint32
    	Status    int32
    	Int       int32
    	Ptr       uint64
    	Utime     uint64
    	Stime     uint64
    	Addr      uint64
    	Addr_lsb  uint16
    	_         uint16
    	Syscall   int32
    	Call_addr uint64
    	Arch      uint32
    	_         [28]uint8
    }
    
    type Winsize struct {
    	Row    uint16
    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    const (
    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