Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 213 for dX (0.03 sec)

  1. src/runtime/rt0_windows_amd64.s

    	MOVQ	BX, 32(SP) // callee-saved, preserved across the CALL
    	MOVQ	SP, BX
    	ANDQ	$~15, SP // alignment as per Windows requirement
    	MOVQ	_cgo_sys_thread_create(SB), AX
    	MOVQ	$_rt0_amd64_windows_lib_go(SB), CX
    	MOVQ	$0, DX
    	CALL	AX
    	MOVQ	BX, SP
    	MOVQ	32(SP), BX
    	RET
    
    TEXT _rt0_amd64_windows_lib_go(SB),NOSPLIT|NOFRAME,$0
    	MOVQ  $0, DI
    	MOVQ	$0, SI
    	MOVQ	$runtime·rt0_go(SB), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 19 11:55:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/runtime/memmove_386.s

    move_5through8:
    	MOVL	(SI), AX
    	MOVL	-4(SI)(BX*1), CX
    	MOVL	AX, (DI)
    	MOVL	CX, -4(DI)(BX*1)
    	RET
    move_9through16:
    	MOVL	(SI), AX
    	MOVL	4(SI), CX
    	MOVL	-8(SI)(BX*1), DX
    	MOVL	-4(SI)(BX*1), BP
    	MOVL	AX, (DI)
    	MOVL	CX, 4(DI)
    	MOVL	DX, -8(DI)(BX*1)
    	MOVL	BP, -4(DI)(BX*1)
    	RET
    move_17through32:
    	MOVOU	(SI), X0
    	MOVOU	-16(SI)(BX*1), X1
    	MOVOU	X0, (DI)
    	MOVOU	X1, -16(DI)(BX*1)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  3. test/noinit.go

    var g1 = float64(1)
    
    var ix int
    var i0 = 0
    var i1 = 1
    
    var jx uint
    var j0 = uint(0)
    var j1 = uint(1)
    
    var cx complex64
    var c0 = complex64(0)
    var c1 = complex64(1)
    
    var dx complex128
    var d0 = complex128(0)
    var d1 = complex128(1)
    
    var sx []int
    var s0 = []int{0, 0, 0}
    var s1 = []int{1, 2, 3}
    
    func fi() int { return 1 }
    
    var ax [10]int
    var a0 = [10]int{0, 0, 0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/line_test.go

    		{"VADDPD.SAE.SAE X0, X1, X2", `duplicate suffix "SAE"`},
    		{"VADDPD.RZ_SAE.SAE X0, X1, X2", `bad suffix combination`},
    
    		// BSWAP on 16-bit registers is undefined. See #29167,
    		{"BSWAPW DX", `unrecognized instruction`},
    		{"BSWAPW R11", `unrecognized instruction`},
    	})
    }
    
    func testBadInstParser(t *testing.T, goarch string, tests []badInstTest) {
    	for i, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/debug/macho/macho.go

    	Name  uint32
    	Type  uint8
    	Sect  uint8
    	Desc  uint16
    	Value uint64
    }
    
    // Regs386 is the Mach-O 386 register structure.
    type Regs386 struct {
    	AX    uint32
    	BX    uint32
    	CX    uint32
    	DX    uint32
    	DI    uint32
    	SI    uint32
    	BP    uint32
    	SP    uint32
    	SS    uint32
    	FLAGS uint32
    	IP    uint32
    	CS    uint32
    	DS    uint32
    	ES    uint32
    	FS    uint32
    	GS    uint32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  6. src/runtime/libfuzzer_amd64.s

    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    // Based on race_amd64.s; see commentary there.
    
    #ifdef GOOS_windows
    #define RARG0 CX
    #define RARG1 DX
    #define RARG2 R8
    #define RARG3 R9
    #else
    #define RARG0 DI
    #define RARG1 SI
    #define RARG2 DX
    #define RARG3 CX
    #endif
    
    // void runtime·libfuzzerCall4(fn, hookId int, s1, s2 unsafe.Pointer, result uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 04:57:07 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			if inst.DataSize == 16 && EAX <= x && x <= R15L {
    				x -= EAX - AX
    			}
    
    		case IN, INSB, INSW, INSD, OUT, OUTSB, OUTSW, OUTSD:
    			// DX is the port, but libopcodes prints it as if it were a memory reference.
    			if x == DX {
    				return "(%dx)"
    			}
    		case VMOVDQA, VMOVDQU, VMOVNTDQA, VMOVNTDQ:
    			return strings.Replace(gccRegName[x], "xmm", "ymm", -1)
    		}
    		return gccRegName[x]
    	case Mem:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  8. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

        @Test
        void populatePropertiesOverwrite() throws Exception {
            // Arrange
            CliRequest request = new CliRequest(new String[] {"-Dx", "-Dx=false", "validate"}, null);
    
            // Act
            cli.cli(request);
            cli.properties(request);
    
            // Assert
            assertThat(request.getUserProperties().getProperty("x"), is("false"));
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	DIB:  "DIB",
    	R8B:  "R8B",
    	R9B:  "R9B",
    	R10B: "R10B",
    	R11B: "R11B",
    	R12B: "R12B",
    	R13B: "R13B",
    	R14B: "R14B",
    	R15B: "R15B",
    	AX:   "AX",
    	CX:   "CX",
    	BX:   "BX",
    	DX:   "DX",
    	SP:   "SP",
    	BP:   "BP",
    	SI:   "SI",
    	DI:   "DI",
    	R8W:  "R8W",
    	R9W:  "R9W",
    	R10W: "R10W",
    	R11W: "R11W",
    	R12W: "R12W",
    	R13W: "R13W",
    	R14W: "R14W",
    	R15W: "R15W",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/amd64error.s

    	VPGATHERDQ X2, 664(BX*1), X1    // ERROR "invalid instruction"
    	VPGATHERDQ Y2, (BP)(AX*2), Y1   // ERROR "invalid instruction"
    	VPGATHERDQ Y5, 664(DX*8), Y6    // ERROR "invalid instruction"
    	VPGATHERDQ Y5, (DX), Y0         // ERROR "invalid instruction"
    	// VM/X rejects Y index register.
    	VPGATHERDQ Y5, 664(Y14*8), Y6   // ERROR "invalid instruction"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top