Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 143 for dX (0.02 sec)

  1. src/syscall/asm_linux_amd64.s

    	RET
    
    // func rawSyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr)
    TEXT ·rawSyscallNoError(SB),NOSPLIT,$0-48
    	MOVQ	a1+8(FP), DI
    	MOVQ	a2+16(FP), SI
    	MOVQ	a3+24(FP), DX
    	MOVQ	trap+0(FP), AX	// syscall entry
    	SYSCALL
    	MOVQ	AX, r1+32(FP)
    	MOVQ	DX, r2+40(FP)
    	RET
    
    // func gettimeofday(tv *Timeval) (err uintptr)
    TEXT ·gettimeofday(SB),NOSPLIT,$0-16
    	MOVQ	tv+0(FP), DI
    	MOVQ	$0, SI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/internal/runtime/syscall/asm_linux_386.s

    #define INVOKE_SYSCALL	INT	$0x80
    
    // func Syscall6(num, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr)
    //
    // Syscall # in AX, args in BX CX DX SI DI BP, return in AX
    TEXT ·Syscall6(SB),NOSPLIT,$0-40
    	MOVL	num+0(FP), AX	// syscall entry
    	MOVL	a1+4(FP), BX
    	MOVL	a2+8(FP), CX
    	MOVL	a3+12(FP), DX
    	MOVL	a4+16(FP), SI
    	MOVL	a5+20(FP), DI
    	MOVL	a6+24(FP), BP
    	INVOKE_SYSCALL
    	CMPL	AX, $0xfffff001
    	JLS	ok
    	MOVL	$-1, r1+28(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 861 bytes
    - Viewed (0)
  3. tensorflow/cc/framework/gradients_test.cc

          // Construct backward graph.
          auto dz = Const(scope, {{1.0, 1.0}, {1.0, 1.0}});
          auto dx = MatMul(scope, dz, y, MatMul::TransposeB(true));
          auto dy = MatMul(scope, x, dz, MatMul::TransposeA(true));
    
          auto du = MatMul(scope, dx, v, MatMul::TransposeB(true));
          auto dv = MatMul(scope, u, dx, MatMul::TransposeA(true));
        } else {
          // Call AddSymbolicGradients.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  4. src/runtime/sys_netbsd_386.s

    	PUSHAL				// save registers
    	PUSHL	BP
    	CALL	lwp_setprivate<>(SB)
    	POPL	AX
    	POPAL
    
    	// Now segment is established. Initialize m, g.
    	get_tls(AX)
    	MOVL	DX, g(AX)
    	MOVL	BX, g_m(DX)
    
    	CALL	runtime·stackcheck(SB)	// smashes AX, CX
    	MOVL	0(DX), DX		// paranoia; check they are not nil
    	MOVL	0(BX), BX
    
    	// more paranoia; check that stack splitting code works
    	PUSHAL
    	CALL	runtime·emptyfunc(SB)
    	POPAL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/lex/lex_test.go

    		lines(
    			"#define LOAD(off, reg) \\",
    			"\tMOVBLZX	(off*4)(R12),	reg \\",
    			"\tADDB	reg,		DX",
    			"",
    			"LOAD(8, AX)",
    		),
    		"\n.\n.MOVBLZX.(.8.*.4.).(.R12.).,.AX.\n.ADDB.AX.,.DX.\n",
    	},
    	{
    		"nested multiline macro",
    		lines(
    			"#define KEYROUND(xmm, load, off, r1, r2, index) \\",
    			"\tMOVBLZX	(BP)(DX*4),	R8 \\",
    			"\tload((off+1), r2) \\",
    			"\tMOVB	R8,		(off*4)(R12) \\",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. test/codegen/logic.go

    // of the args of the ANDQ needs to be saved so it can be used as the arg to TESTQ.
    func andWithUse(x, y int) int {
    	z := x & y
    	// amd64:`TESTQ\s(AX, AX|BX, BX|CX, CX|DX, DX|SI, SI|DI, DI|R8, R8|R9, R9|R10, R10|R11, R11|R12, R12|R13, R13|R15, R15)`
    	if z == 0 {
    		return 77
    	}
    	// use z by returning it
    	return z
    }
    
    // Verify (OR x (NOT y)) rewrites to (ORN x y) where supported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 16:32:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu_x86.s

    	MOVL eaxArg+0(FP), AX
    	MOVL ecxArg+4(FP), CX
    	CPUID
    	MOVL AX, eax+8(FP)
    	MOVL BX, ebx+12(FP)
    	MOVL CX, ecx+16(FP)
    	MOVL DX, edx+20(FP)
    	RET
    
    // func xgetbv() (eax, edx uint32)
    TEXT ·xgetbv(SB),NOSPLIT,$0-8
    	MOVL $0, CX
    	XGETBV
    	MOVL AX, eax+0(FP)
    	MOVL DX, edx+4(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 600 bytes
    - Viewed (0)
  8. src/syscall/asm9_unix2_amd64.s

    TEXT	·Syscall9(SB),NOSPLIT,$32-104
    	NO_LOCAL_POINTERS
    	CALL	runtime·entersyscall<ABIInternal>(SB)
    	MOVQ	num+0(FP), AX	// syscall entry
    	MOVQ	a1+8(FP), DI
    	MOVQ	a2+16(FP), SI
    	MOVQ	a3+24(FP), DX
    	MOVQ	a4+32(FP), R10
    	MOVQ	a5+40(FP), R8
    	MOVQ	a6+48(FP), R9
    	MOVQ	a7+56(FP), R11
    	MOVQ	a8+64(FP), R12
    	MOVQ	a9+72(FP), R13
    
    	// only the first 6 arguments can be passed in registers,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 16:59:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/fmt/scan_test.go

    	{"X%s", "X 27 ", &stringVal, "27"},
    
    	{"X%dX", "X27X", &intVal, 27},
    	{"X%dX", "X27 X", &intVal, nil}, // input does not match format
    	{"X%dX", "X 27X", &intVal, 27},
    	{"X%dX", "X 27 X", &intVal, nil}, // input does not match format
    
    	{"X%dX", "X27X", &intVal, 27},
    	{"X%dX", "X27X ", &intVal, 27},
    	{"X%dX", " X27X", &intVal, nil},  // input does not match format
    	{"X%dX", " X27X ", &intVal, nil}, // input does not match format
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/semver/semver.go

    		x = x[1:] // skip - or .
    		y = y[1:] // skip - or .
    		var dx, dy string
    		dx, x = nextIdent(x)
    		dy, y = nextIdent(y)
    		if dx != dy {
    			ix := isNum(dx)
    			iy := isNum(dy)
    			if ix != iy {
    				if ix {
    					return -1
    				} else {
    					return +1
    				}
    			}
    			if ix {
    				if len(dx) < len(dy) {
    					return -1
    				}
    				if len(dx) > len(dy) {
    					return +1
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top