Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for x1 (0.07 sec)

  1. src/crypto/internal/nistec/p256_asm_arm64.s

    	MOVD	table+8(FP), t1
    	MOVD	res+0(FP), res_ptr
    
    	EOR	x0, x0, x0
    	EOR	x1, x1, x1
    	EOR	x2, x2, x2
    	EOR	x3, x3, x3
    	EOR	y0, y0, y0
    	EOR	y1, y1, y1
    	EOR	y2, y2, y2
    	EOR	y3, y3, y3
    
    	MOVD	$0, t2
    
    loop_select:
    		ADD	$1, t2
    		CMP	t0, t2
    		LDP.P	16(t1), (acc0, acc1)
    		CSEL	EQ, acc0, x0, x0
    		CSEL	EQ, acc1, x1, x1
    		LDP.P	16(t1), (acc2, acc3)
    		CSEL	EQ, acc2, x2, x2
    		CSEL	EQ, acc3, x3, x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/math/big/nat.go

    	xd := z[2*n : 2*n+n2]
    	if subVV(xd, x1, x0) != 0 { // x1-x0
    		s = -s
    		subVV(xd, x0, x1) // x0-x1
    	}
    
    	// compute yd (or the negative value if underflow occurs)
    	yd := z[2*n+n2 : 3*n]
    	if subVV(yd, y0, y1) != 0 { // y0-y1
    		s = -s
    		subVV(yd, y1, y0) // y1-y0
    	}
    
    	// p = (x1-x0)*(y0-y1) == x1*y0 - x1*y1 - x0*y0 + x0*y1 for s > 0
    	// p = (x0-x1)*(y0-y1) == x0*y0 - x0*y1 - x1*y0 + x1*y1 for s < 0
    	p := z[n*3:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/math_grad_test.cc

      TensorShape shape({3, 2, 5});
      auto x1 = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      // Test with x2 = 1 + |x1| to avoid regions where the gradient
      // is unstable and might cause problems for the numeric estimator.
      auto x2 =
          Div(scope_, x1, Add(scope_, Const<float>(scope_, 1), Abs(scope_, x1)));
      auto y = Atan2(scope_, x1, x2);
      RunTest({x1}, {shape}, {y}, {shape});
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_amd64.s

    		PAND X12, X8
    		PAND X12, X9
    		PAND X12, X10
    		PAND X12, X11
    
    		PXOR X4, X0
    		PXOR X5, X1
    		PXOR X6, X2
    		PXOR X7, X3
    
    		PXOR X8, X0
    		PXOR X9, X1
    		PXOR X10, X2
    		PXOR X11, X3
    
    		DECQ AX
    		JNE loop_select_base
    
    	MOVOU X0, (16*0)(DX)
    	MOVOU X1, (16*1)(DX)
    	MOVOU X2, (16*2)(DX)
    	MOVOU X3, (16*3)(DX)
    
    	RET
    /* ---------------------------------------*/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  5. src/runtime/asm_386.s

    	// 16 bytes loaded at this address won't cross
    	// a page boundary, so we can load it directly.
    	MOVOU	-16(AX), X1
    	ADDL	BX, BX
    	PAND	masks<>(SB)(BX*8), X1
    
    final1:
    	PXOR	X0, X1	// xor data with seed
    	AESENC	X1, X1  // scramble combo 3 times
    	AESENC	X1, X1
    	AESENC	X1, X1
    	MOVL	X1, (DX)
    	RET
    
    endofpage:
    	// address ends in 1111xxxx. Might be up against
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. src/go/build/constraint/expr.go

    			return &NotExpr{X: x}
    		}
    		return x
    	case *AndExpr:
    		x1 := pushNot(x.X, not)
    		y1 := pushNot(x.Y, not)
    		if not {
    			return or(x1, y1)
    		}
    		if x1 == x.X && y1 == x.Y {
    			return x
    		}
    		return and(x1, y1)
    	case *OrExpr:
    		x1 := pushNot(x.X, not)
    		y1 := pushNot(x.Y, not)
    		if not {
    			return and(x1, y1)
    		}
    		if x1 == x.X && y1 == x.Y {
    			return x
    		}
    		return or(x1, y1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  7. src/image/draw/draw.go

    				drawCopySrc(
    					dst0.Pix[d0:], dst0.Stride, r, src0.Pix[s0:], src0.Stride, sp, 8*r.Dx())
    				return
    			}
    		}
    	}
    
    	x0, x1, dx := r.Min.X, r.Max.X, 1
    	y0, y1, dy := r.Min.Y, r.Max.Y, 1
    	if processBackward(dst, r, src, sp) {
    		x0, x1, dx = x1-1, x0-1, -1
    		y0, y1, dy = y1-1, y0-1, -1
    	}
    
    	// FALLBACK1.17
    	//
    	// Try the draw.RGBA64Image and image.RGBA64Image interfaces, part of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/Closer.java

       * @throws IOException when the given throwable is an IOException
       * @throws X1 when the given throwable is of the declared type X1
       * @throws X2 when the given throwable is of the declared type X2
       */
      public <X1 extends Exception, X2 extends Exception> RuntimeException rethrow(
          Throwable e, Class<X1> declaredType1, Class<X2> declaredType2) throws IOException, X1, X2 {
        checkNotNull(e);
        thrown = e;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/StatsTesting.java

        assertThat(transformation.transform(x1)).isWithin(ALLOWED_ERROR).of(y1);
        assertThat(transformation.transform(x1 + xDelta)).isWithin(ALLOWED_ERROR).of(y1 + yDelta);
        assertThat(transformation.inverse().transform(y1)).isWithin(ALLOWED_ERROR).of(x1);
        assertThat(transformation.inverse().transform(y1 + yDelta))
            .isWithin(ALLOWED_ERROR)
            .of(x1 + xDelta);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/Closer.java

       * @throws IOException when the given throwable is an IOException
       * @throws X1 when the given throwable is of the declared type X1
       * @throws X2 when the given throwable is of the declared type X2
       */
      public <X1 extends Exception, X2 extends Exception> RuntimeException rethrow(
          Throwable e, Class<X1> declaredType1, Class<X2> declaredType2) throws IOException, X1, X2 {
        checkNotNull(e);
        thrown = e;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top