Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for RDX (0.03 sec)

  1. src/crypto/internal/edwards25519/field/_asm/fe_amd64_asm.go

    		Load(aX, RAX)
    	case 2:
    		Comment(fmt.Sprintf("%s = 2×%s×%s", r, aX, bX))
    		Load(aX, RAX)
    		SHLQ(Imm(1), RAX)
    	default:
    		panic("unsupported i value")
    	}
    	MULQ(mustAddr(bX)) // RDX, RAX = RAX * bX
    	MOVQ(RAX, r.lo)
    	MOVQ(RDX, r.hi)
    }
    
    // addMul64 sets r to r + i * aX * bX.
    func addMul64(r uint128, i uint64, aX, bX namedComponent) {
    	switch i {
    	case 1:
    		Comment(fmt.Sprintf("%s += %s×%s", r, aX, bX))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/runtime/defs_darwin_amd64.go

    type regmmst struct {
    	mmst_reg  [10]int8
    	mmst_rsrv [6]int8
    }
    
    type regxmm struct {
    	xmm_reg [16]int8
    }
    
    type regs64 struct {
    	rax    uint64
    	rbx    uint64
    	rcx    uint64
    	rdx    uint64
    	rdi    uint64
    	rsi    uint64
    	rbp    uint64
    	rsp    uint64
    	r8     uint64
    	r9     uint64
    	r10    uint64
    	r11    uint64
    	r12    uint64
    	r13    uint64
    	r14    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go

    	R14      uint64
    	R13      uint64
    	R12      uint64
    	Rbp      uint64
    	Rbx      uint64
    	R11      uint64
    	R10      uint64
    	R9       uint64
    	R8       uint64
    	Rax      uint64
    	Rcx      uint64
    	Rdx      uint64
    	Rsi      uint64
    	Rdi      uint64
    	Orig_rax uint64
    	Rip      uint64
    	Cs       uint64
    	Eflags   uint64
    	Rsp      uint64
    	Ss       uint64
    	Fs_base  uint64
    	Gs_base  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    	// invoke INT3. The debugger should write the argument
    	// frame for the call at SP, set up argument registers, push
    	// the trapping PC on the stack, set the PC to the function to
    	// call, set RDX to point to the closure (if a closure call),
    	// and resume execution.
    	//
    	// If the function returns, this will set R12 to 1 and invoke
    	// INT3. The debugger can then inspect any return value saved
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"PtraceRegs.R9", Field, 0},
    		{"PtraceRegs.Rax", Field, 0},
    		{"PtraceRegs.Rbp", Field, 0},
    		{"PtraceRegs.Rbx", Field, 0},
    		{"PtraceRegs.Rcx", Field, 0},
    		{"PtraceRegs.Rdi", Field, 0},
    		{"PtraceRegs.Rdx", Field, 0},
    		{"PtraceRegs.Rip", Field, 0},
    		{"PtraceRegs.Rsi", Field, 0},
    		{"PtraceRegs.Rsp", Field, 0},
    		{"PtraceRegs.Ss", Field, 0},
    		{"PtraceRegs.Uregs", Field, 0},
    		{"PtraceRegs.Xcs", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top