Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 213 for dX (0.03 sec)

  1. src/cmd/asm/internal/asm/operand_test.go

    	{"(AX)(CX*8)", "(AX)(CX*8)"},
    	{"(BP)(CX*4)", "(BP)(CX*4)"},
    	{"(BP)(DX*4)", "(BP)(DX*4)"},
    	{"(BP)(R8*4)", "(BP)(R8*4)"},
    	{"(BX)", "(BX)"},
    	{"(DI)", "(DI)"},
    	{"(DI)(BX*1)", "(DI)(BX*1)"},
    	{"(DX)", "(DX)"},
    	{"(R9)", "(R9)"},
    	{"(R9)(BX*8)", "(R9)(BX*8)"},
    	{"(SI)", "(SI)"},
    	{"(SI)(BX*1)", "(SI)(BX*1)"},
    	{"(SI)(DX*1)", "(SI)(DX*1)"},
    	{"(SP)", "(SP)"},
    	{"(SP)(AX*4)", "(SP)(AX*4)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	R14B: "R14",
    	R15B: "R15",
    	AX:   "AX",
    	CX:   "CX",
    	BX:   "BX",
    	DX:   "DX",
    	SP:   "SP",
    	BP:   "BP",
    	SI:   "SI",
    	DI:   "DI",
    	R8W:  "R8",
    	R9W:  "R9",
    	R10W: "R10",
    	R11W: "R11",
    	R12W: "R12",
    	R13W: "R13",
    	R14W: "R14",
    	R15W: "R15",
    	EAX:  "AX",
    	ECX:  "CX",
    	EDX:  "DX",
    	EBX:  "BX",
    	ESP:  "SP",
    	EBP:  "BP",
    	ESI:  "SI",
    	EDI:  "DI",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		gp11div   = regInfo{inputs: []regMask{ax, gpsp &^ dx}, outputs: []regMask{ax}, clobbers: dx}
    		gp21hmul  = regInfo{inputs: []regMask{ax, gpsp}, outputs: []regMask{dx}, clobbers: ax}
    		gp11mod   = regInfo{inputs: []regMask{ax, gpsp &^ dx}, outputs: []regMask{dx}, clobbers: ax}
    		gp21mul   = regInfo{inputs: []regMask{ax, gpsp}, outputs: []regMask{dx, ax}}
    
    		gp2flags     = regInfo{inputs: []regMask{gpsp, gpsp}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  4. src/runtime/race_amd64.s

    // A brief recap of the amd64 calling convention.
    // Arguments are passed in DI, SI, DX, CX, R8, R9, the rest is on stack.
    // Callee-saved registers are: BX, BP, R12-R15.
    // SP must be 16-byte aligned.
    // On Windows:
    // Arguments are passed in CX, DX, R8, R9, the rest is on stack.
    // Callee-saved registers are: BX, BP, DI, SI, R12-R15.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. src/image/png/writer.go

    	}
    	_, e.err = e.w.Write(b)
    	if e.err != nil {
    		return
    	}
    	_, e.err = e.w.Write(e.footer[:4])
    }
    
    func (e *encoder) writeIHDR() {
    	b := e.m.Bounds()
    	binary.BigEndian.PutUint32(e.tmp[0:4], uint32(b.Dx()))
    	binary.BigEndian.PutUint32(e.tmp[4:8], uint32(b.Dy()))
    	// Set bit depth and color type.
    	switch e.cb {
    	case cbG8:
    		e.tmp[8] = 8
    		e.tmp[9] = ctGrayscale
    	case cbTC8:
    		e.tmp[8] = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/gradients/math_grad.cc

         *
         *    dX = U / Y
         *    dY = -U*X / Y^2 = (X/Y) * -U / Y = -U*Z / Y
         *
         */
    
        AbstractTensorHandle* upstream_grad = grad_outputs[0];
        AbstractTensorHandle* Y = forward_inputs_[1];
        AbstractTensorHandle* Z = forward_outputs_[0];
    
        // Calculate dX =  U / Y
        std::string name = "Div_Grad_X";
        TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/edwards25519_test.go

    	for i, p := range points {
    		var XX, YY, ZZ, ZZZZ field.Element
    		XX.Square(&p.x)
    		YY.Square(&p.y)
    		ZZ.Square(&p.z)
    		ZZZZ.Square(&ZZ)
    		// -x² + y² = 1 + dx²y²
    		// -(X/Z)² + (Y/Z)² = 1 + d(X/Z)²(Y/Z)²
    		// (-X² + Y²)/Z² = 1 + (dX²Y²)/Z⁴
    		// (-X² + Y²)*Z² = Z⁴ + dX²Y²
    		var lhs, rhs field.Element
    		lhs.Subtract(&YY, &XX).Multiply(&lhs, &ZZ)
    		rhs.Multiply(d, &XX).Multiply(&rhs, &YY).Add(&rhs, &ZZZZ)
    		if lhs.Equal(&rhs) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  8. src/image/geom.go

    	Min, Max Point
    }
    
    // String returns a string representation of r like "(3,4)-(6,5)".
    func (r Rectangle) String() string {
    	return r.Min.String() + "-" + r.Max.String()
    }
    
    // Dx returns r's width.
    func (r Rectangle) Dx() int {
    	return r.Max.X - r.Min.X
    }
    
    // Dy returns r's height.
    func (r Rectangle) Dy() int {
    	return r.Max.Y - r.Min.Y
    }
    
    // Size returns r's width and height.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. src/runtime/memmove_plan9_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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        touchid = null;
        touchid2 = null;
      }
    
      function panStart(x, y) {
        moved = false;
        panLastX = x;
        panLastY = y;
      }
    
      function panMove(x, y) {
        let dx = x - panLastX;
        let dy = y - panLastY;
        if (Math.abs(dx) <= 2 && Math.abs(dy) <= 2) return; // Ignore tiny moves
    
        moved = true;
        panLastX = x;
        panLastY = y;
    
        // Firefox workaround: get dimensions from parentNode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top