Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,729 for float2 (0.17 sec)

  1. test/codegen/floats.go

    	return x, y, z
    }
    
    func indexLoad(b0 []float32, b1 float32, idx int) float32 {
    	// arm64:`FMOVS\s\(R[0-9]+\)\(R[0-9]+<<2\),\sF[0-9]+`
    	return b0[idx] * b1
    }
    
    func indexStore(b0 []float64, b1 float64, idx int) {
    	// arm64:`FMOVD\sF[0-9]+,\s\(R[0-9]+\)\(R[0-9]+<<3\)`
    	b0[idx] = b1
    }
    
    // ----------- //
    //    Fused    //
    // ----------- //
    
    func FusedAdd32(x, y, z float32) float32 {
    	// s390x:"FMADDS\t"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/math/big/float.go

    // than Float values, and each unique Float value requires
    // its own unique *Float pointer. To "copy" a Float value,
    // an existing (or newly allocated) Float must be set to
    // a new value using the [Float.Set] method; shallow copies
    // of Floats are not supported and may lead to errors.
    type Float struct {
    	prec uint32
    	mode RoundingMode
    	acc  Accuracy
    	form form
    	neg  bool
    	mant nat
    	exp  int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Floats.java

       * @param b the second {@code float} to compare
       * @return the result of invoking {@link Float#compare(float, float)}
       */
      public static int compare(float a, float b) {
        return Float.compare(a, b);
      }
    
      /**
       * Returns {@code true} if {@code value} represents a real number. This is equivalent to, but not
       * necessarily implemented as, {@code !(Float.isInfinite(value) || Float.isNaN(value))}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/Floats.java

       * @param b the second {@code float} to compare
       * @return the result of invoking {@link Float#compare(float, float)}
       */
      public static int compare(float a, float b) {
        return Float.compare(a, b);
      }
    
      /**
       * Returns {@code true} if {@code value} represents a real number. This is equivalent to, but not
       * necessarily implemented as, {@code !(Float.isInfinite(value) || Float.isNaN(value))}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. src/math/big/rat_test.go

    	// r must be strictly between f0 and f1, the floats bracketing f.
    	f0 := math.Nextafter32(f, float32(math.Inf(-1)))
    	f1 := math.Nextafter32(f, float32(math.Inf(+1)))
    
    	// For f to be correct, r must be closer to f than to f0 or f1.
    	df := delta(r, float64(f))
    	df0 := delta(r, float64(f0))
    	df1 := delta(r, float64(f1))
    	if df.Cmp(df0) > 0 {
    		t.Errorf("Rat(%v).Float32() = %g (%b), but previous float32 %g (%b) is closer", r, f, f, f0, f0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 07 00:15:59 UTC 2022
    - 18.9K bytes
    - Viewed (0)
  6. src/math/big/floatconv_test.go

    		{"% 030.20f", "+1e-20", " 00000000.00000000000000000001"},
    
    		// erroneous formats
    		{"%s", 1.0, "%!s(*big.Float=1)"},
    	} {
    		value := new(Float)
    		switch v := test.value.(type) {
    		case float32:
    			value.SetPrec(24).SetFloat64(float64(v))
    		case float64:
    			value.SetPrec(53).SetFloat64(v)
    		case string:
    			value.SetPrec(512).Parse(v, 0)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  7. src/strconv/atof.go

    	}
    	return f, n, err
    }
    
    // ParseFloat converts the string s to a floating-point number
    // with the precision specified by bitSize: 32 for float32, or 64 for float64.
    // When bitSize=32, the result still has type float64, but it will be
    // convertible to float32 without changing its value.
    //
    // ParseFloat accepts decimal and hexadecimal floating-point numbers
    // as defined by the Go syntax for [floating-point literals].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  8. src/reflect/float32reg_riscv64.s

    #include "textflag.h"
    
    // riscv64 allows 32-bit floats to live in the bottom
    // part of the register, it expects them to be NaN-boxed.
    // These functions are needed to ensure correct conversions
    // on riscv64.
    
    // Convert float32->uint64
    TEXT ·archFloat32ToReg(SB),NOSPLIT,$0-16
    	MOVF	val+0(FP), F1
    	MOVD	F1, ret+8(FP)
    	RET
    
    // Convert uint64->float32
    TEXT ·archFloat32FromReg(SB),NOSPLIT,$0-12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 13:38:32 UTC 2022
    - 794 bytes
    - Viewed (0)
  9. src/internal/fuzz/encoding_test.go

    			//   * math.Float32bits(float32(math.NaN()))+1
    			in: `go test fuzz v1
    float32(-0)
    float64(-0)
    float32(+Inf)
    float32(-Inf)
    float32(NaN)
    float64(+Inf)
    float64(-Inf)
    float64(NaN)
    math.Float64frombits(0x7ff8000000000002)
    math.Float32frombits(0x7fc00001)`,
    		},
    		{
    			desc: "int variations",
    			// Although we arbitrarily choose default integer bases (0 or 16), we may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:20:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/go/constant/value.go

    }
    
    // Float32Val is like [Float64Val] but for float32 instead of float64.
    func Float32Val(x Value) (float32, bool) {
    	switch x := x.(type) {
    	case int64Val:
    		f := float32(x)
    		return f, int64Val(f) == x
    	case intVal:
    		f, acc := newFloat().SetInt(x.val).Float32()
    		return f, acc == big.Exact
    	case ratVal:
    		return x.val.Float32()
    	case floatVal:
    		f, acc := x.val.Float32()
    		return f, acc == big.Exact
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
Back to top