Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for sc_x (0.03 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. src/go/internal/gccgoimporter/testdata/issue29198.go

    	return errors.New("hey!")
    }
    
    type Server struct {
    	FooServer *FooServer
    	user      string
    	ctx       context.Context
    }
    
    func New(sctx context.Context, u string) (*Server, error) {
    	s := &Server{user: u, ctx: sctx}
    	s.FooServer = (*FooServer)(s)
    	return s, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 23:01:16 UTC 2018
    - 693 bytes
    - Viewed (0)
  7. 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)
  8. src/go/internal/gccgoimporter/testdata/issue29198.gox

    >>; .issue29198.user <type -16>; .issue29198.ctx <type 10>; }>>>;
    >;
    type <type 8>;
    func New (sctx <type 10>, u <type -16>) (? <type 43 *<type 5>>, ? <type -19>);
    type <type 5>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 23:01:16 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top