Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ChanArgs (0.11 sec)

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

    		t1 := NewChanArgs(t)
    		CheckSize(t1)
    
    	case TCHANARGS:
    		t1 := t.ChanArgs()
    		CalcSize(t1) // just in case
    		// Make sure size of t1.Elem() is calculated at this point. We can
    		// use CalcSize() here rather than CheckSize(), because the top-level
    		// (possibly recursive) type will have been calculated before the fake
    		// chanargs is handled.
    		CalcSize(t1.Elem())
    		if t1.Elem().width >= 1<<16 {
    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