Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 717 for csquare (0.22 sec)

  1. src/cmd/cgo/internal/test/issue9510b/b.go

    // license that can be found in the LICENSE file.
    
    package issue9510b
    
    /*
    static double csquare(double a, double b) {
    	__complex__ double d;
    	__real__ d = a;
    	__imag__ d = b;
    	return __real__ (d * d);
    }
    */
    import "C"
    
    func F(a, b float64) float64 {
    	return float64(C.csquare(C.double(a), C.double(b)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 413 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue9510a/a.go

    // license that can be found in the LICENSE file.
    
    package issue9510a
    
    /*
    static double csquare(double a, double b) {
    	__complex__ double d;
    	__real__ d = a;
    	__imag__ d = b;
    	return __real__ (d * d);
    }
    */
    import "C"
    
    func F(a, b float64) float64 {
    	return float64(C.csquare(C.double(a), C.double(b)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 413 bytes
    - Viewed (0)
  3. docs/assets/images/icon-square.png

    icon-square.png...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. docs/assets/images/logo-square.png

    logo-square.png...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. samples/guide/docs/images/logo-square.png

    logo-square.png...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jun 24 12:59:42 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/field/fe.go

    	z2.Square(z)             // 2
    	t.Square(&z2)            // 4
    	t.Square(&t)             // 8
    	z9.Multiply(&t, z)       // 9
    	z11.Multiply(&z9, &z2)   // 11
    	t.Square(&z11)           // 22
    	z2_5_0.Multiply(&t, &z9) // 31 = 2^5 - 2^0
    
    	t.Square(&z2_5_0) // 2^6 - 2^1
    	for i := 0; i < 4; i++ {
    		t.Square(&t) // 2^10 - 2^5
    	}
    	z2_10_0.Multiply(&t, &z2_5_0) // 2^10 - 2^0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    339E          ; mapped                 ; 006B 006D     # 1.1  SQUARE KM
    339F          ; mapped                 ; 006D 006D 0032 #1.1  SQUARE MM SQUARED
    33A0          ; mapped                 ; 0063 006D 0032 #1.1  SQUARE CM SQUARED
    33A1          ; mapped                 ; 006D 0032     # 1.1  SQUARE M SQUARED
    33A2          ; mapped                 ; 006B 006D 0032 #1.1  SQUARE KM SQUARED
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/PairedStatsAccumulator.java

       *
       * <p>This fit minimizes the root-mean-square error in {@code y} as a function of {@code x}. This
       * error is defined as the square root of the mean of the squares of the differences between the
       * actual {@code y} values of the data and the values predicted by the fit for the {@code x}
       * values (i.e. it is the square root of the mean of the squares of the vertical distances between
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

       *
       * <p>This fit minimizes the root-mean-square error in {@code y} as a function of {@code x}. This
       * error is defined as the square root of the mean of the squares of the differences between the
       * actual {@code y} values of the data and the values predicted by the fit for the {@code x}
       * values (i.e. it is the square root of the mean of the squares of the vertical distances between
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/PairedStats.java

       *
       * <p>This fit minimizes the root-mean-square error in {@code y} as a function of {@code x}. This
       * error is defined as the square root of the mean of the squares of the differences between the
       * actual {@code y} values of the data and the values predicted by the fit for the {@code x}
       * values (i.e. it is the square root of the mean of the squares of the vertical distances between
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top