Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for rtcall (0.12 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    			aux := ssa.StaticAuxCall(calleeLSym, params)
    			call = s.newValue0A(ssa.OpStaticLECall, aux.LateExpansionResultType(), aux)
    			if k == callTail {
    				call.Op = ssa.OpTailLECall
    				stksize = 0 // Tail call does not use stack. We reuse caller's frame.
    			}
    		default:
    			s.Fatalf("bad call type %v %v", n.Op(), n)
    		}
    		call.AddArgs(callArgs...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/func.go

    	ABI0           *abi.ABIConfig // A copy, for no-sync access
    	ABI1           *abi.ABIConfig // A copy, for no-sync access
    	ABISelf        *abi.ABIConfig // ABI for function being compiled
    	ABIDefault     *abi.ABIConfig // ABI for rtcall and other no-parsed-signature/pragma functions.
    
    	scheduled   bool  // Values in Blocks are in final order
    	laidout     bool  // Blocks are ordered
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/calls/KtCall.kt

    @Deprecated(
        "The API has been moved into `org.jetbrains.kotlin.analysis.api.resolution` package",
        level = DeprecationLevel.HIDDEN,
    )
    public typealias KaCall = KaCall
    public typealias KtCall = KaCall
    
    @Deprecated(
        "The API has been moved into `org.jetbrains.kotlin.analysis.api.resolution` package",
        level = DeprecationLevel.HIDDEN,
    )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

    import org.jetbrains.kotlin.psi.KtExpression
    
    /**
     * A call to a function, a simple/compound access to a property, or a simple/compound access through `get` and `set` convention.
     */
    public sealed class KaCall : KaLifetimeOwner
    
    /**
     * A call to a function, or a simple/compound access to a property.
     */
    public sealed class KaCallableMemberCall<S : KaCallableSymbol, C : KaCallableSignature<S>> : KaCall() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/x86/asm.go

    	//      53                      push %ebx
    	//      e8 00 00 00 00          call __x86.get_pc_thunk.cx + R_CALL __x86.get_pc_thunk.cx
    	//      8d 81 00 00 00 00       lea 0x0(%ecx), %eax + R_PCREL ctxt.Moduledata
    	//      8d 99 00 00 00 00       lea 0x0(%ecx), %ebx + R_GOTPC _GLOBAL_OFFSET_TABLE_
    	//      e8 00 00 00 00          call runtime.addmoduledata@plt + R_CALL runtime.addmoduledata
    	//      5b                      pop %ebx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. src/syscall/fs_js.go

    		return 0, errors.New("syscall.Open: O_SYNC is not supported by js/wasm")
    	}
    
    	jsFD, err := fsCall("open", path, flags, perm)
    	if err != nil {
    		return 0, err
    	}
    	fd := jsFD.Int()
    
    	var entries []string
    	if stat, err := fsCall("fstat", fd); err == nil && stat.Call("isDirectory").Bool() {
    		dir, err := fsCall("readdir", path)
    		if err != nil {
    			return 0, err
    		}
    		entries = make([]string, dir.Length())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AbstractAntJacocoReport.java

                @SuppressWarnings("UnusedDeclaration")
                public Object doCall(Object ignore) {
                    antBuilder.invokeMethod("executiondata", new Object[]{emptyArgs, new Closure<Object>(this, this) {
                        public Object doCall(Object ignore) {
                            executionData.addToAntBuilder(antBuilder, "resources");
                            return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. module.xml

    			<param name="module.version" value="${opensearch.version}" />
    			<param name="module.zip.version" value="${opensearch.version}" />
    		</antcall>
    		<!-- geo -->
    		<antcall target="install.module">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    			<param name="module.groupId" value="org/codelibs/opensearch/module" />
    			<param name="module.name.prefix" value="" />
    			<param name="module.name" value="geo" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 16 07:10:50 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. plugin.xml

    			<param name="plugin.version" value="2.14.0" />
    			<param name="plugin.zip.version" value="2.14.0" />
    		</antcall>
    		<!-- analysis-fess -->
    		<antcall target="install.plugin">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    			<param name="plugin.groupId" value="org/codelibs/opensearch" />
    			<param name="plugin.name.prefix" value="opensearch-" />
    			<param name="plugin.name" value="analysis-fess" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 16 07:10:50 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFailureUrlBhv.java

        public ListResultBean<FailureUrl> selectList(CBCall<FailureUrlCB> cbLambda) {
            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<FailureUrl> selectPage(CBCall<FailureUrlCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<FailureUrl>) facadeSelectList(createCB(cbLambda));
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top