Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for tcCall (0.18 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    		}
    
    	case obj.ACALL:
    		switch p.To.Type {
    		case obj.TYPE_MEM:
    			// Handled in preprocess.
    		case obj.TYPE_REG:
    			p.As = AJALR
    			p.From.Type = obj.TYPE_REG
    			p.From.Reg = REG_LR
    		default:
    			ctxt.Diag("unknown destination type %+v in CALL: %v", p.To.Type, p)
    		}
    
    	case obj.AUNDEF:
    		p.As = AEBREAK
    
    	case ASCALL:
    		// SCALL is the old name for ECALL.
    		p.As = AECALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    	CMPQ	BX, CX
    	JNE	bad_cpu
    #endif
    
    	CALL	runtime·check(SB)
    
    	MOVL	24(SP), AX		// copy argc
    	MOVL	AX, 0(SP)
    	MOVQ	32(SP), AX		// copy argv
    	MOVQ	AX, 8(SP)
    	CALL	runtime·args(SB)
    	CALL	runtime·osinit(SB)
    	CALL	runtime·schedinit(SB)
    
    	// create a new goroutine to start program
    	MOVQ	$runtime·mainPC(SB), AX		// entry
    	PUSHQ	AX
    	CALL	runtime·newproc(SB)
    	POPQ	AX
    
    	// start this M
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                  @Override
                  public ClosingFuture<TestCloseable> call(DeferredCloser closer) {
                    closer.eventuallyClose(closeable1, closingExecutor);
                    return ClosingFuture.submit(
                        new ClosingCallable<TestCloseable>() {
                          @Override
                          public TestCloseable call(DeferredCloser deferredCloser) throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    // Matches the following pattern that represents uniform quantization:
    //
    // `call @uniform_quantize(%input, %inverse_scale, %zero_point)`
    //
    // Provides helper functions to access the operands and the callee.
    class UniformQuantizeFunctionCallPattern {
     public:
      // Returns Failure if it doesn't match. Returns the "wrapper" for the uniform
      // dequantization function call pattern when matched.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. okhttp/api/okhttp.api

    	public fun cacheConditionalHit (Lokhttp3/Call;Lokhttp3/Response;)V
    	public fun cacheHit (Lokhttp3/Call;Lokhttp3/Response;)V
    	public fun cacheMiss (Lokhttp3/Call;)V
    	public fun callEnd (Lokhttp3/Call;)V
    	public fun callFailed (Lokhttp3/Call;Ljava/io/IOException;)V
    	public fun callStart (Lokhttp3/Call;)V
    	public fun canceled (Lokhttp3/Call;)V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    				skip--
    			} else {
    				// Callers expect the pc buffer to contain return addresses
    				// and do the -1 themselves, so we add 1 to the call pc to
    				// create a "return pc". Since there is no actual call, here
    				// "return pc" just means a pc you subtract 1 from to get
    				// the pc of the "call". The actual no-op we insert may or
    				// may not be 1 byte.
    				pcBuf[n] = uf.pc + 1
    				n++
    			}
    			u.calleeFuncID = sf.funcID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    	// Reserve PLT entries for these symbols and generate call
    	// stubs. The call stubs need to live in .text, which is why we
    	// need to do this pass this early.
    
    	// Reserve PLT entry and generate symbol resolver
    	addpltsym(ctxt, ldr, r.Sym())
    
    	// The stub types are described in gencallstub.
    	stubType := 0
    	stubTypeStr := ""
    
    	// For now, the choice of call stub type is determined by whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * is accepted, then this future is guaranteed to have been completed with the supplied future by
       * the time this method returns. If the supplied future is not done and the call is accepted, then
       * the future will be <i>set asynchronously</i>. Note that such a result, though not yet known,
       * cannot be overridden by a call to a {@code set*} method, only by a call to {@link #cancel}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  9. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * is accepted, then this future is guaranteed to have been completed with the supplied future by
       * the time this method returns. If the supplied future is not done and the call is accepted, then
       * the future will be <i>set asynchronously</i>. Note that such a result, though not yet known,
       * cannot be overridden by a call to a {@code set*} method, only by a call to {@link #cancel}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        // returned by _Retval nodes.
        std::unique_ptr<Graph> graph_;
    
        // Which device are these nodes on? Used to assign a device to the call
        // node.
        string device_;
    
        // NodeDef for the function call node.
        NodeDef call_node_def_;
    
        // Name that is used for the call node. This may not be
        // call_node_def_.name() if the client supplies a rewrite lambda.
        string function_def_name_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top