Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _Cfpvar_fp_ (0.18 sec)

  1. src/cmd/compile/internal/types2/call.go

    		}
    	}
    
    	return
    }
    
    var cgoPrefixes = [...]string{
    	"_Ciconst_",
    	"_Cfconst_",
    	"_Csconst_",
    	"_Ctype_",
    	"_Cvar_", // actually a pointer to the var
    	"_Cfpvar_fp_",
    	"_Cfunc_",
    	"_Cmacro_", // function to evaluate the expanded expression
    }
    
    func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, def *TypeName, wantType bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/go/types/call.go

    		}
    	}
    
    	return
    }
    
    var cgoPrefixes = [...]string{
    	"_Ciconst_",
    	"_Cfconst_",
    	"_Csconst_",
    	"_Ctype_",
    	"_Cvar_", // actually a pointer to the var
    	"_Cfpvar_fp_",
    	"_Cfunc_",
    	"_Cmacro_", // function to evaluate the expanded expression
    }
    
    func (check *Checker) selector(x *operand, e *ast.SelectorExpr, def *TypeName, wantType bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top