Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for X1 (0.02 sec)

  1. android/guava/src/com/google/common/math/LinearTransformation.java

       * {@code x} and {@code y} value pair.
       *
       * @since 20.0
       */
      public static final class LinearTransformationBuilder {
    
        private final double x1;
        private final double y1;
    
        private LinearTransformationBuilder(double x1, double y1) {
          this.x1 = x1;
          this.y1 = y1;
        }
    
        /**
         * Finish building an instance which also maps {@code x = x2} to {@code y = y2}. These values
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_ifma.s

    	VPMADD52HUQ X7, X11, K1, X1                        // 62f2a509b5cf
    	VPMADD52HUQ X0, X11, K1, X1                        // 62f2a509b5c8
    	VPMADD52HUQ 17(SP)(BP*2), X11, K1, X1              // 62f2a509b58c6c11000000
    	VPMADD52HUQ -7(DI)(R8*4), X11, K1, X1              // 62b2a509b58c87f9ffffff
    	VPMADD52HUQ X7, X31, K1, X1                        // 62f28501b5cf
    	VPMADD52HUQ X0, X31, K1, X1                        // 62f28501b5c8
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 13.2K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/line_test.go

    		// Test AVX512 suffixes.
    		{"VADDPD.A X0, X1, X2", `unknown suffix "A"`},
    		{"VADDPD.A.A X0, X1, X2", `unknown suffix "A"; duplicate suffix "A"`},
    		{"VADDPD.A.A.A X0, X1, X2", `unknown suffix "A"; duplicate suffix "A"`},
    		{"VADDPD.A.B X0, X1, X2", `unknown suffix "A"; unknown suffix "B"`},
    		{"VADDPD.Z.A X0, X1, X2", `Z suffix should be the last; unknown suffix "A"`},
    		{"VADDPD.Z.Z X0, X1, X2", `Z suffix should be the last; duplicate suffix "Z"`},
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/amd64error.s

    	// Usage of rounding with invalid operands.
    	VADDPD.RU_SAE X3, X2, K1, X1     // ERROR "unsupported rounding"
    	VADDPD.RD_SAE X3, X2, K1, X1     // ERROR "unsupported rounding"
    	VADDPD.RZ_SAE X3, X2, K1, X1     // ERROR "unsupported rounding"
    	VADDPD.RN_SAE X3, X2, K1, X1     // ERROR "unsupported rounding"
    	VADDPD.RU_SAE Y3, Y2, K1, Y1     // ERROR "unsupported rounding"
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/amd64.s

    	JCS	2(PC)
    loop:
    	LOOP	loop // LOOP
    
    	// Intel pseudonyms for our own renamings.
    	PADDD	M2, M1 // PADDL M2, M1
    	MOVDQ2Q	X1, M1 // MOVQ X1, M1
    	MOVNTDQ	X1, (AX)	// MOVNTO X1, (AX)
    	MOVOA	(AX), X1	// MOVO (AX), X1
    
    // Tests for SP indexed addresses.
    	MOVQ	foo(SP)(AX*1), BX		// 488b1c04
    	MOVQ	foo+32(SP)(CX*2), DX		// 488b544c20
    	MOVQ	foo+32323(SP)(R8*4), R9		// 4e8b8c84437e0000
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Apr 09 18:57:21 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	XVBITCLRB	$7, X2, X1	// 413c1077
    	XVBITCLRH	$15, X2, X1	// 417c1077
    	XVBITCLRW	$31, X2, X1	// 41fc1077
    	XVBITCLRV	$63, X2, X1	// 41fc1177
    	XVBITSETB	$7, X2, X1	// 413c1477
    	XVBITSETH	$15, X2, X1	// 417c1477
    	XVBITSETW	$31, X2, X1	// 41fc1477
    	XVBITSETV	$63, X2, X1	// 41fc1577
    	XVBITREVB	$7, X2, X1	// 413c1877
    	XVBITREVH	$15, X2, X1	// 417c1877
    	XVBITREVW	$31, X2, X1	// 41fc1877
    	XVBITREVV	$63, X2, X1	// 41fc1977
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Sep 04 19:24:25 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/LinearTransformationTest.java

      public void testMappingAnd_regular() {
        double x1 = 1.2;
        double y1 = 3.4;
        double xDelta = 5.6;
        double yDelta = 7.8;
        LinearTransformation transformation =
            LinearTransformation.mapping(x1, y1).and(x1 + xDelta, y1 + yDelta);
        assertDiagonalLinearTransformation(transformation, x1, y1, xDelta, yDelta);
      }
    
      public void testMappingAnd_horizontal() {
        double x1 = 1.2;
        double xDelta = 3.4;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/math/LinearTransformationTest.java

      public void testMappingAnd_regular() {
        double x1 = 1.2;
        double y1 = 3.4;
        double xDelta = 5.6;
        double yDelta = 7.8;
        LinearTransformation transformation =
            LinearTransformation.mapping(x1, y1).and(x1 + xDelta, y1 + yDelta);
        assertDiagonalLinearTransformation(transformation, x1, y1, xDelta, yDelta);
      }
    
      public void testMappingAnd_horizontal() {
        double x1 = 1.2;
        double xDelta = 3.4;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VPSRAW $-1, X1, X2           // c5e971e1ff
    	VPSRAW $-1, Y1, Y2           // c5ed71e1ff
    	VPSRLW $-1, X1, X1           // c5f171d1ff
    	VPSRLW $-1, Y1, Y2           // c5ed71d1ff
    	VEXTRACTPS $-1, X1, AX       // c4e37917c8ff
    	VPEXTRB $-1, X1, AX          // c4e37914c8ff
    	VPEXTRD $-1, X1, AX          // c4e37916c8ff
    	VPEXTRQ $-1, X1, AX          // c4e3f916c8ff
    	// EVEX: High-16 X registers.
    	VADDPD X30, X1, X0          // 6291f50858c6
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Feb 20 11:20:03 UTC 2025
    - 57.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java

            itemList.add(new SynonymItem(3, new String[] { "c1" }, new String[] { "C1", "C2" }));
            itemList.add(new SynonymItem(4, new String[] { "x1", "X1" }, new String[] { "x1", "X1" }));
            itemList.add(new SynonymItem(5, new String[] { "y1", "Y1", "y2" }, new String[] { "y1", "Y1", "y2" }));
            synonymFile.synonymItemList = itemList;
        }
    
        public void test_selectList() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9K bytes
    - Viewed (0)
Back to top