Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for sc_x (0.29 sec)

  1. src/runtime/signal_openbsd_arm64.go

    func (c *sigctxt) r7() uint64  { return (uint64)(c.regs().sc_x[7]) }
    func (c *sigctxt) r8() uint64  { return (uint64)(c.regs().sc_x[8]) }
    func (c *sigctxt) r9() uint64  { return (uint64)(c.regs().sc_x[9]) }
    func (c *sigctxt) r10() uint64 { return (uint64)(c.regs().sc_x[10]) }
    func (c *sigctxt) r11() uint64 { return (uint64)(c.regs().sc_x[11]) }
    func (c *sigctxt) r12() uint64 { return (uint64)(c.regs().sc_x[12]) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. src/runtime/defs_openbsd_arm64.go

    	tf_tid   *int32
    	tf_stack uintptr
    }
    
    type sigcontext struct {
    	__sc_unused int32
    	sc_mask     int32
    	sc_sp       uintptr
    	sc_lr       uintptr
    	sc_elr      uintptr
    	sc_spsr     uintptr
    	sc_x        [30]uintptr
    	sc_cookie   int64
    }
    
    type siginfo struct {
    	si_signo  int32
    	si_code   int32
    	si_errno  int32
    	pad_cgo_0 [4]byte
    	_data     [120]byte
    }
    
    type stackt struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/runtime/signal_openbsd_riscv64.go

    func (c *sigctxt) a3() uint64  { return uint64(c.regs().sc_a[3]) }
    func (c *sigctxt) a4() uint64  { return uint64(c.regs().sc_a[4]) }
    func (c *sigctxt) a5() uint64  { return uint64(c.regs().sc_a[5]) }
    func (c *sigctxt) a6() uint64  { return uint64(c.regs().sc_a[6]) }
    func (c *sigctxt) a7() uint64  { return uint64(c.regs().sc_a[7]) }
    func (c *sigctxt) s2() uint64  { return uint64(c.regs().sc_s[2]) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/runtime/defs_openbsd_riscv64.go

    type sigcontext struct {
    	__sc_unused int32
    	sc_mask     int32
    	sc_ra       uintptr
    	sc_sp       uintptr
    	sc_gp       uintptr
    	sc_tp       uintptr
    	sc_t        [7]uintptr
    	sc_s        [12]uintptr
    	sc_a        [8]uintptr
    	sc_sepc     uintptr
    	sc_f        [32]uintptr
    	sc_fcsr     uintptr
    	sc_cookie   int64
    }
    
    type siginfo struct {
    	si_signo  int32
    	si_code   int32
    	si_errno  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. cmd/server-main_test.go

    		t.Run(testcase.config, func(t *testing.T) {
    			sctx := &serverCtxt{}
    			err := mergeServerCtxtFromConfigFile(testcase.config, sctx)
    			if testcase.expectedErr && err == nil {
    				t.Error("expected failure, got success")
    			}
    			if !testcase.expectedErr && err != nil {
    				t.Error("expected success, got failure", err)
    			}
    			if err == nil {
    				if len(sctx.Layout.pools) != 2 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize_batch_matmul.cc

          return failure();
        }
    
        // The input tensors x and y are 2-D or higher with shape:
        //       [..., r_x == 1, c_x] and [..., c_y, r_y].
        // The position of r_* and c_* are determined by the polarity of
        // the adj(X|Y) attribute, respectively.
        // So adjX == True indicates [..., c_x, r_x == 1].
        llvm::ArrayRef<int64_t> lhs_shape =
            mlir::cast<RankedTensorType>(bmm_op.getX().getType()).getShape();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm_test.go

    			out:  `0x0008\s00008\s\(.*\)\tMOVQ\t\$1,\sBX`,
    		},
    		{
    			name: "16-byte alignment",
    			code: "TEXT ·foo(SB),$0-0\nMOVQ $0, AX\nPCALIGN $16\nMOVQ $2, CX\nRET\n",
    			out:  `0x0010\s00016\s\(.*\)\tMOVQ\t\$2,\sCX`,
    		},
    	}
    
    	for _, test := range testCases {
    		if err := os.WriteFile(tmpfile, []byte(test.code), 0644); err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/math_grad.cc

      Output max = op.input(2);
    
      Output s_x = Shape(scope, x);
      Output s_min = Shape(scope, min);
      Output s_max = Shape(scope, max);
    
      Output min_mask = Less(scope, x, min);
      Output max_mask = Greater(scope, x, max);
    
      auto r_min = internal::BroadcastGradientArgs(scope, s_x, s_min);
      auto r_max = internal::BroadcastGradientArgs(scope, s_x, s_max);
    
      Output grad = grad_inputs[0];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    //   * size(batching_dimensions) <= 3 (TFLite support restriction)
    //   * size(contracting_dimensions) = 1
    //   * Input tensors are per-tensor uniform quantized (i8->f32)
    //     tensors (full integer) with shape [..., r_x, c_x] or [..., c_x, r_x].
    //   * The filter tensor is a per-tensor uniform quantized (i8->f32) tensor
    //     (constant or activation) with shape [..., r_y, c_y] or [..., c_y, r_y].
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	// Use WithoutCancel instead of a new context.TODO() to propagate trace context
    	// Call the container runtime's SyncPod callback
    	sctx := context.WithoutCancel(ctx)
    	result := kl.containerRuntime.SyncPod(sctx, pod, podStatus, pullSecrets, kl.backOff)
    	kl.reasonCache.Update(pod.UID, result)
    	if err := result.Error(); err != nil {
    		// Do not return error if the only failures were pods in backoff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top