Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 182 for mcall (0.13 sec)

  1. 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)
  2. src/cmd/asm/internal/asm/testdata/arm.s

    	BL.GE	4(PC)  // CALL.GE 4(PC)    // 020000ab
    	BL.LT	3(PC)  // CALL.LT 3(PC)    // 010000bb
    	BL.GT	2(PC)  // CALL.GT 2(PC)    // 000000cb
    	BL.LE	1(PC)  // CALL.LE 1(PC)    // ffffffdb
    	ADD	$0, R0, R0
    	BL	-1(PC) // CALL -1(PC)      // fdffffeb
    	BL	-2(PC) // CALL -2(PC)      // fcffffeb
    	BL	-3(PC) // CALL -3(PC)      // fbffffeb
    	BL	-4(PC) // CALL -4(PC)      // faffffeb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	XXPERMDI X0, X0, $2, X0
    	XXPERMDI X1, X1, $2, X1
    	CALL   p256MulInternal<>(SB)
    
    	VOR T0, T0, Z3L
    	VOR T1, T1, Z3H
    
    	// X=Y;  Y- ;  MUL; X=T  // T3 = T1*T1         T2
    	VOR  Y0, Y0, X0
    	VOR  Y1, Y1, X1
    	CALL p256MulInternal<>(SB)
    	VOR  T0, T0, X0
    	VOR  T1, T1, X1
    
    	// X- ;  Y- ;  MUL; T4=T // T4 = T3*T1         T2        T4
    	CALL p256MulInternal<>(SB)
    	VOR  T0, T0, T4L
    	VOR  T1, T1, T4H
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    // CHECK: %[[CONST_0:.+]] = stablehlo.constant dense<3.000000e-01> : tensor<2x3xf32>
    // CHECK: %[[CALL:.+]] = call @composite_dot_general_fn(%[[ARG_0]], %[[CONST_0]]) : (tensor<1x2xf32>, tensor<2x3xf32>) -> tensor<1x3xf32>
    // CHECK: return %[[CALL]]
    
      func.func private @composite_dot_general_fn(%arg0: tensor<1x2xf32>, %arg1: tensor<2x3xf32>) -> tensor<1x3xf32> attributes {_from_xla_call_module} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    // Populates desiredStateOfWorld cache with two ode/volume/pod tuples pointing to the created volume
    // Calls Run()
    // Verifies there is one attach call and no detach calls.
    // Deletes the node/volume/pod tuple from desiredStateOfWorld which succeeded in attaching
    // Verifies there are two attach call and one detach call.
    func Test_Run_OneVolumeAttachAndDetachMultipleNodesWithReadWriteOnce(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

    // CHECK:           %[[VAL_4:.*]]:2 = call @func_0_GPU_FLOAT(%[[VAL_0]], %[[VAL_1]], %[[VAL_2]], %[[VAL_3]]) {tac.device = "GPU", tac.inference_type = "FLOAT", tac.interface_name = "func_0"} : (tensor<1xf32>, tensor<1xf32>, tensor<1xf32>, tensor<1xf32>) -> (tensor<1xf32>, tensor<1xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top