Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for y1 (0.13 sec)

  1. 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;
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 7.1K bytes
    - Viewed (0)
  2. 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;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 7.1K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VPGATHERQQ Y0, (SP)(Y1*1), Y2           // c4e2fd91140c
    	VPGATHERQQ Y0, 16(SP)(Y1*1), Y2         // c4e2fd91540c10
    	VPGATHERQQ Y0, 512(SP)(Y1*1), Y2        // c4e2fd91940c00020000
    	VPGATHERQQ Y0, (R12)(Y1*1), Y2          // c4c2fd91140c
    	VPGATHERQQ Y0, 16(R12)(Y1*1), Y2        // c4c2fd91540c10
    	VPGATHERQQ Y0, 512(R12)(Y1*1), Y2       // c4c2fd91940c00020000
    	VPGATHERQQ Y0, (BP)(Y1*1), Y2           // c4e2fd91540d00
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 11 18:32:50 GMT 2023
    - 57.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vnni.s

    	VPDPWSSDS Y31, Y1, K1, Y1                          // 6292752953cf
    	VPDPWSSDS (R8), Y1, K1, Y1                         // 62d275295308
    	VPDPWSSDS 15(DX)(BX*2), Y1, K1, Y1                 // 62f27529538c5a0f000000
    	VPDPWSSDS Y0, Y9, K1, Y1                           // 62f2352953c8
    	VPDPWSSDS Y19, Y9, K1, Y1                          // 62b2352953cb
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 27.5K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_ifma.s

    	VPMADD52HUQ 15(DX)(BX*2), Y8, K7, Y17              // 62e2bd2fb58c5a0f000000
    	VPMADD52HUQ Y28, Y1, K7, Y17                       // 6282f52fb5cc
    	VPMADD52HUQ Y13, Y1, K7, Y17                       // 62c2f52fb5cd
    	VPMADD52HUQ Y7, Y1, K7, Y17                        // 62e2f52fb5cf
    	VPMADD52HUQ (R8), Y1, K7, Y17                      // 62c2f52fb508
    	VPMADD52HUQ 15(DX)(BX*2), Y1, K7, Y17              // 62e2f52fb58c5a0f000000
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 13.2K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vpopcntdq.s

    	VPOPCNTQ Y5, K2, Y1                                // 62f2fd2a55cd
    	VPOPCNTQ Y17, K2, Y1                               // 62b2fd2a55c9
    	VPOPCNTQ Y13, K2, Y1                               // 62d2fd2a55cd
    	VPOPCNTQ 7(AX)(CX*4), K2, Y1                       // 62f2fd2a558c8807000000
    	VPOPCNTQ 7(AX)(CX*1), K2, Y1                       // 62f2fd2a558c0807000000
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/amd64error.s

    	VADDPD.RN_SAE X3, X2, K1, X1     // ERROR "unsupported rounding"
    	VADDPD.RU_SAE Y3, Y2, K1, Y1     // ERROR "unsupported rounding"
    	VADDPD.RD_SAE Y3, Y2, K1, Y1     // ERROR "unsupported rounding"
    	VADDPD.RZ_SAE Y3, Y2, K1, Y1     // ERROR "unsupported rounding"
    	VADDPD.RN_SAE Y3, Y2, K1, Y1     // ERROR "unsupported rounding"
    	// Unsupported SAE.
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jun 14 00:03:57 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/LinearTransformation.java

       *
       * @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
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/avx512enc/gfni_avx512f.s

    	VGF2P8MULB Y12, Y13, K1, Y1                        // 62d21529cfcc
    	VGF2P8MULB (R8), Y13, K1, Y1                       // 62d21529cf08
    	VGF2P8MULB 15(DX)(BX*2), Y13, K1, Y1               // 62f21529cf8c5a0f000000
    	VGF2P8MULB Y2, Y7, K1, Y1                          // 62f24529cfca
    	VGF2P8MULB Y21, Y7, K1, Y1                         // 62b24529cfcd
    	VGF2P8MULB Y12, Y7, K1, Y1                         // 62d24529cfcc
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 22.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java

            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() {
            final PagingList<SynonymItem> itemList1 = synonymFile.selectList(0, 20); // error occurs
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9K bytes
    - Viewed (0)
Back to top