Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for indexer (0.27 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    type FunctionParam struct {
    	Index int
    }
    
    func (fp *FunctionParam) print(ps *printState) {
    	if fp.Index == 0 {
    		ps.writeString("this")
    	} else if ps.llvmStyle {
    		if fp.Index == 1 {
    			ps.writeString("fp")
    		} else {
    			fmt.Fprintf(&ps.buf, "fp%d", fp.Index-2)
    		}
    	} else {
    		fmt.Fprintf(&ps.buf, "{parm#%d}", fp.Index)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top