Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Dtype (0.04 sec)

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

    	if !ptr.Type.IsPtr() || !types.Identical(n.Type(), ptr.Type.Elem()) {
    		base.FatalfAt(n.Pos(), "setHeapaddr %L with type %v", n, ptr.Type)
    	}
    
    	// Declare variable to hold address.
    	sym := &types.Sym{Name: "&" + n.Sym().Name, Pkg: types.LocalPkg}
    	addr := s.curfn.NewLocal(pos, sym, types.NewPtr(n.Type()))
    	addr.SetUsed(true)
    	types.CalcSize(addr.Type())
    
    	if n.Class == ir.PPARAMOUT {
    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/net/http/h2_bundle.go

    //
    // See https://httpwg.org/specs/rfc7540.html#FrameHeader
    type http2FrameHeader struct {
    	valid bool // caller can access []byte fields in the Frame
    
    	// Type is the 1 byte frame type. There are ten standard frame
    	// types, but extension frame types may be written by WriteRawFrame
    	// and will be returned by ReadFrame (as UnknownFrame).
    	Type http2FrameType
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top