Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for y0 (0.13 sec)

  1. src/image/geom.go

    var ZR Rectangle
    
    // Rect is shorthand for [Rectangle]{Pt(x0, y0), [Pt](x1, y1)}. The returned
    // rectangle has minimum and maximum coordinates swapped if necessary so that
    // it is well-formed.
    func Rect(x0, y0, x1, y1 int) Rectangle {
    	if x0 > x1 {
    		x0, x1 = x1, x0
    	}
    	if y0 > y1 {
    		y0, y1 = y1, y0
    	}
    	return Rectangle{Point{x0, y0}, Point{x1, y1}}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. src/crypto/sha1/sha1block_amd64.s

    	VPSRLDQ $4, REG_SUB_4, Y0 // w[i-3]
    
    #define PRECALC_17(REG_SUB_16,REG_SUB_8,REG) \
    	VPXOR  REG_SUB_8, REG, REG \
    	VPXOR  REG_SUB_16, Y0, Y0
    
    #define PRECALC_18(REG) \
    	VPXOR Y0, REG, REG \
    	VPSLLDQ $12, REG, Y9
    
    #define PRECALC_19(REG) \
    	VPSLLD $1, REG, Y0 \
    	VPSRLD $31, REG, REG
    
    #define PRECALC_20(REG) \
    	VPOR REG, Y0, Y0 \
    	VPSLLD $2, Y9,  REG
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/init0.go

    // initialization cycles
    
    package init0
    
    // initialization cycles (we don't know the types)
    const (
    	s0 /* ERROR "initialization cycle: s0 refers to itself" */ = s0
    
    	x0 /* ERROR "initialization cycle for x0" */ = y0
    	y0 = x0
    
    	a0 = b0
    	b0 /* ERROR "initialization cycle for b0" */ = c0
    	c0 = d0
    	d0 = b0
    )
    
    var (
    	s1 /* ERROR "initialization cycle: s1 refers to itself" */ = s1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/math/big/float_test.go

    	} {
    		for i := range [8]int{} {
    			x0, y0 := test.x, test.y
    			if i&1 != 0 {
    				x0 = -x0
    			}
    			if i&2 != 0 {
    				y0 = -y0
    			}
    			if i&4 != 0 {
    				x0, y0 = y0, x0
    			}
    
    			x := NewFloat(x0)
    			y := NewFloat(y0)
    			z := new(Float).SetPrec(53)
    
    			z.Mul(x, y)
    			got, _ := z.Float64()
    			want := x0 * y0
    			if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/init1.go

    // license that can be found in the LICENSE file.
    
    // initialization cycles
    
    package init1
    
    // issue 6683 (marked as WorkingAsIntended)
    
    type T0 struct{}
    
    func (T0) m() int { return y0 }
    
    var x0 = T0{}
    
    var y0 /* ERROR "initialization cycle" */ = x0.m()
    
    type T1 struct{}
    
    func (T1) m() int { return y1 }
    
    var x1 interface {
    	m() int
    } = T1{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/gradients_test.cc

      auto x = Placeholder(scope_test_, DT_FLOAT);
      auto y0 = Square(scope_test_, x);
      // y1, y2, and y3 all use y0. This means the backwards pass will need to wait
      // for the gradient for all three.
      auto y1 = Square(scope_test_, y0);
      auto y2 = Square(scope_test_, y0);
      auto y3 = Square(scope_test_, y2);
      std::vector<Output> grad_outputs;
      // By requesting y0, y1, and y3 we test that the computation correctly waits
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  7. 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"
    	VPGATHERQQ X2, (BP)(Y7*2), X1   // 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)
  8. src/internal/types/testdata/check/builtins0.go

    	assert(unsafe.Sizeof(complex64(0)) == 8)
    	assert(unsafe.Sizeof(complex128(0)) == 16)
    
    	var y0 S0
    	assert(unsafe.Sizeof(y0.a) == 1)
    	assert(unsafe.Sizeof(y0.b) == 4)
    	assert(unsafe.Sizeof(y0.c) == 8)
    	assert(unsafe.Sizeof(y0.d) == 1)
    	assert(unsafe.Sizeof(y0.e) == 16)
    	assert(unsafe.Sizeof(y0) == 40)
    
    	var y1 S1
    	assert(unsafe.Sizeof(y1) == 72)
    
    	var y2 S2
    	assert(unsafe.Sizeof(y2) == 8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  9. src/internal/bytealg/equal_amd64.s

    	XORQ	AX, AX	// return 0
    	RET
    #endif
    
    	// 64 bytes at a time using ymm registers
    	PCALIGN $16
    hugeloop_avx2:
    	CMPQ	BX, $64
    	JB	bigloop_avx2
    	VMOVDQU	(SI), Y0
    	VMOVDQU	(DI), Y1
    	VMOVDQU	32(SI), Y2
    	VMOVDQU	32(DI), Y3
    	VPCMPEQB	Y1, Y0, Y4
    	VPCMPEQB	Y2, Y3, Y5
    	VPAND	Y4, Y5, Y6
    	VPMOVMSKB Y6, DX
    	ADDQ	$64, SI
    	ADDQ	$64, DI
    	SUBQ	$64, BX
    	CMPL	DX, $0xffffffff
    	JEQ	hugeloop_avx2
    	VZEROUPPER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:34:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/tests/make_test_graphs.py

      for _ in range(3):
        x0, x1 = array_ops.split(x, 2, 0)
        y0, y1 = array_ops.split(y, 2, 0)
        x0 += 1
        y0 += 1
        z = math_ops.matmul(x, y, name='x_y_prod')
        a = array_ops.concat([x0, y1], axis=0, name='concat_x0_y1')
        b = array_ops.concat([y0, x1], axis=0, name='concat_y0_x1')
        x = math_ops.matmul(a, b, name='a_b')
        y = math_ops.add(x, z)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top