Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for dX (0.06 sec)

  1. src/cmd/compile/internal/ssa/opGen.go

    				{0, 239}, // AX CX DX BX BP SI DI
    				{1, 239}, // AX CX DX BX BP SI DI
    			},
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:         "ADCLconst",
    		auxType:      auxInt32,
    		argLen:       2,
    		resultInArg0: true,
    		clobberFlags: true,
    		asm:          x86.AADCL,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    TEXT runtimeĀ·gogo(SB), NOSPLIT, $0-8
    	MOVQ	buf+0(FP), BX		// gobuf
    	MOVQ	gobuf_g(BX), DX
    	MOVQ	0(DX), CX		// make sure g != nil
    	JMP	gogo<>(SB)
    
    TEXT gogo<>(SB), NOSPLIT, $0
    	get_tls(CX)
    	MOVQ	DX, g(CX)
    	MOVQ	DX, R14		// set the g register
    	MOVQ	gobuf_sp(BX), SP	// restore SP
    	MOVQ	gobuf_ret(BX), AX
    	MOVQ	gobuf_ctxt(BX), DX
    	MOVQ	gobuf_bp(BX), BP
    	MOVQ	$0, gobuf_sp(BX)	// clear to help garbage collector
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/image/gif/writer.go

    	bw := blockWriter{e: e}
    	bw.setup()
    	lzww := lzw.NewWriter(bw, lzw.LSB, litWidth)
    	if dx := b.Dx(); dx == pm.Stride {
    		_, e.err = lzww.Write(pm.Pix[:dx*b.Dy()])
    		if e.err != nil {
    			lzww.Close()
    			return
    		}
    	} else {
    		for i, y := 0, b.Min.Y; y < b.Max.Y; i, y = i+pm.Stride, y+1 {
    			_, e.err = lzww.Write(pm.Pix[i : i+dx])
    			if e.err != nil {
    				lzww.Close()
    				return
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/gradients.cc

      for (Node* n : while_ctx->exit_nodes()) dy.push_back(backprops[n]);
      std::vector<Output> dx;
      TF_RETURN_IF_ERROR(AddWhileLoopGradient(while_ctx, while_scope, dy, &dx));
    
      // Backprop along the in edges to the while loop (i.e. the inputs to the enter
      // nodes)
      DCHECK_EQ(dx.size(), while_ctx->enter_nodes().size());
      for (int i = 0, end = dx.size(); i < end; ++i) {
        Node* enter_node = while_ctx->enter_nodes()[i];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. src/image/gif/reader.go

    	var nPix []uint8
    	dx := m.Bounds().Dx()
    	dy := m.Bounds().Dy()
    	nPix = make([]uint8, dx*dy)
    	offset := 0 // steps through the input by sequential scan lines.
    	for _, pass := range interlacing {
    		nOffset := pass.start * dx // steps through the output as defined by pass.
    		for y := pass.start; y < dy; y += pass.skip {
    			copy(nPix[nOffset:nOffset+dx], m.Pix[offset:offset+dx])
    			offset += dx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. 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)
  7. src/hash/crc32/crc32.go

    	IEEE = 0xedb88320
    
    	// Castagnoli's polynomial, used in iSCSI.
    	// Has better error detection characteristics than IEEE.
    	// https://dx.doi.org/10.1109/26.231911
    	Castagnoli = 0x82f63b78
    
    	// Koopman's polynomial.
    	// Also has better error detection characteristics than IEEE.
    	// https://dx.doi.org/10.1109/DSN.2002.1028931
    	Koopman = 0xeb31d82e
    )
    
    // Table is a 256-word table representing the polynomial for efficient processing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. src/crypto/internal/mlkem768/mlkem768.go

    // (DRAFT), Algorithm 14.
    func parseDK(dx *decryptionKey, dkPKE []byte) error {
    	if len(dkPKE) != decryptionKeySize {
    		return errors.New("mlkem768: invalid decryption key length")
    	}
    
    	for i := range dx.s {
    		f, err := polyByteDecode[nttElement](dkPKE[:encodingSize12])
    		if err != nil {
    			return err
    		}
    		dx.s[i] = f
    		dkPKE = dkPKE[encodingSize12:]
    	}
    
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  9. src/image/gif/writer_test.go

    		Delay:     make([]int, len(frames)),
    		LoopCount: 5,
    	}
    	for i, f := range frames {
    		g, err := readGIF(f)
    		if err != nil {
    			t.Fatal(f, err)
    		}
    		m := g.Image[0]
    		if m.Bounds().Dx() != width || m.Bounds().Dy() != height {
    			t.Fatalf("frame %d had unexpected bounds: got %v, want width/height = %d/%d",
    				i, m.Bounds(), width, height)
    		}
    		g0.Image[i] = m
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/security_test.go

    	{"-v"},
    }
    
    var badCompilerFlags = [][]string{
    	{"-D@X"},
    	{"-D-X"},
    	{"-Ufoo=bar"},
    	{"-F@dir"},
    	{"-F-dir"},
    	{"-I@dir"},
    	{"-I-dir"},
    	{"-O@1"},
    	{"-Wa,-foo"},
    	{"-W@foo"},
    	{"-Wp,-DX,-D@X"},
    	{"-Wp,-UX,-U@X"},
    	{"-g@gdb"},
    	{"-g-gdb"},
    	{"-march=@dawn"},
    	{"-march=-dawn"},
    	{"-mcmodel=@model"},
    	{"-mlarge-data-threshold=@12"},
    	{"-std=@c99"},
    	{"-std=-c99"},
    	{"-x@c"},
    	{"-x-c"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top