Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DeferCheckSize (0.29 sec)

  1. src/cmd/compile/internal/types/universe.go

    	ByteType = defBasic(TUINT8, BuiltinPkg, "byte")
    	RuneType = defBasic(TINT32, BuiltinPkg, "rune")
    
    	// error type
    	DeferCheckSize()
    	ErrorType = defBasic(TFORW, BuiltinPkg, "error")
    	ErrorType.SetUnderlying(makeErrorInterface())
    	ResumeCheckSize()
    
    	// comparable type (interface)
    	DeferCheckSize()
    	ComparableType = defBasic(TFORW, BuiltinPkg, "comparable")
    	ComparableType.SetUnderlying(makeComparableInterface())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/size.go

    		return
    	}
    
    	if t.widthCalculated() {
    		return
    	}
    
    	if CalcSizeDisabled {
    		base.Fatalf("width not calculated: %v", t)
    	}
    
    	// defer CheckSize calls until after we're done
    	DeferCheckSize()
    
    	lno := base.Pos
    	if pos := t.Pos(); pos.IsKnown() {
    		base.Pos = pos
    	}
    
    	t.width = -2
    	t.align = 0  // 0 means use t.Width, below
    	t.alg = AMEM // default
    	// default t.ptrBytes is 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top