Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LookupRuntimeABI (0.25 sec)

  1. src/cmd/compile/internal/typecheck/syms.go

    func LookupRuntimeFunc(name string) *obj.LSym {
    	return LookupRuntimeABI(name, obj.ABIInternal)
    }
    
    // LookupRuntimeVar looks up a variable (or assembly function) name in package
    // runtime. If this is a function, it may have a special calling
    // convention.
    func LookupRuntimeVar(name string) *obj.LSym {
    	return LookupRuntimeABI(name, obj.ABI0)
    }
    
    // LookupRuntimeABI looks up a name in package runtime using the given ABI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:13 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top