Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,328 for FLOAT64 (0.07 sec)

  1. src/math/stubs.go

    	panic("not implemented")
    }
    
    const haveArchCosh = false
    
    func archCosh(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchErf = false
    
    func archErf(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchErfc = false
    
    func archErfc(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchExpm1 = false
    
    func archExpm1(x float64) float64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. src/strconv/testdata/testfp.txt

    float64 %b 81661e+153 6696636728760206p+472
    float64 %b 920657e-023 5975405561110124p-109
    float64 %b 4603285e-024 5975405561110124p-110
    float64 %b 87575437e-309 8452160731874668p-1053
    float64 %b 245540327e+122 4985336549131723p+381
    float64 %b 6138508175e+120 4985336549131723p+379
    float64 %b 83356057653e+193 5986732817132056p+625
    float64 %b 619534293513e+124 4798406992060657p+399
    float64 %b 2335141086879e+218 5419088166961646p+713
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 7.9K bytes
    - Viewed (0)
  3. src/runtime/softfloat64_test.go

    }
    
    // float64 -hw-> int32 -hw-> float64
    func hwint32(f float64) float64 {
    	return float64(int32(f))
    }
    
    // float64 -sw-> int64 -hw-> float64
    func toint64sw(f float64) float64 {
    	i, ok := F64toint(math.Float64bits(f))
    	if !ok {
    		// There's no right answer for out of range.
    		// Match the hardware to pass the test.
    		i = int64(f)
    	}
    	return float64(i)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4K bytes
    - Viewed (0)
  4. src/math/rand/regress_test.go

    	float64(0.16735444255905835),        // Float64()
    	float64(0.2885856518054551),         // Float64()
    	float64(0.9026048462705047),         // Float64()
    	float64(0.8497802817628735),         // Float64()
    	float64(0.2730468047134829),         // Float64()
    	float64(0.6090801919903561),         // Float64()
    	float64(0.25365600644283687),        // Float64()
    	float64(0.7746542391859803),         // Float64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  5. test/fuse.go

    func fLessLeq(a float64, f float64) bool {
    	return a < 0 && f > Cf2 || a <= 0 && f < -Cf2
    }
    
    func fLeqEq(a float64, f float64) bool {
    	return a <= 0 && f > Cf2 || a == 0 && f < -Cf2
    }
    
    func fLeqNeq(a int16, f float64) bool {
    	return a <= 0 && f > Cf2 || a != 0 && f < -Cf2 // ERROR "Redirect Neq16 based on Leq16$"
    }
    
    func fLeqLess(a float32, f float64) bool {
    	return a <= 0 && f > Cf2 || a < 0 && f < -Cf2
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. test/float_lit2.go

    	{0x7fefffffffffffff, float64(max64), float64(max64 - ulp64/2 + ulp64/two64), "max64 - ulp64/2 + ulp64/two64"},
    	{0x7fefffffffffffff, float64(max64), float64(max64), "max64"},
    	{0x7fefffffffffffff, float64(max64), float64(max64 + ulp64/2 - ulp64/two64), "max64 + ulp64/2 - ulp64/two64"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:39:47 UTC 2016
    - 7.9K bytes
    - Viewed (0)
  7. pkg/test/loadbalancersim/timeseries/data.go

    	nan              = math.NaN()
    )
    
    type Data []float64
    
    func (d Data) Min() float64 {
    	return d.sorted().min()
    }
    
    func (d Data) Max() float64 {
    	return d.sorted().max()
    }
    
    func (d Data) Median() float64 {
    	return d.Quantile(0.5)
    }
    
    func (d Data) Mean() float64 {
    	total := float64(0)
    	for _, v := range d {
    		total += v
    	}
    	return total / float64(len(d))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue11326.go

    	var _ = 1e64645      // ERROR "1e\+64645 overflows float64|floating-point constant overflow|exponent too large|overflows float64|overflows"
    	var _ = 1e6464       // ERROR "1e\+6464 overflows float64|floating-point constant overflow|overflows float64|overflows"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  9. test/shift1.go

    	_ = 1<<s+1. == 1   // ERROR "invalid|shift of type float64"
    	_ = 1<<s+1. == 1.  // ERROR "invalid|shift of type float64"
    	_ = 1.<<s+1 == 1   // ERROR "invalid|shift of type float64"
    	_ = 1.<<s+1 == 1.  // ERROR "invalid|shift of type float64"
    	_ = 1.<<s+1. == 1  // ERROR "invalid|shift of type float64"
    	_ = 1.<<s+1. == 1. // ERROR "invalid|non-integer|shift of type float64"
    
    	_ = 1<<s == 1<<s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 03 16:24:32 UTC 2021
    - 9.4K bytes
    - Viewed (0)
  10. src/math/rand/v2/zipf.go

    type Zipf struct {
    	r            *Rand
    	imax         float64
    	v            float64
    	q            float64
    	s            float64
    	oneminusQ    float64
    	oneminusQinv float64
    	hxm          float64
    	hx0minusHxm  float64
    }
    
    func (z *Zipf) h(x float64) float64 {
    	return math.Exp(z.oneminusQ*math.Log(z.v+x)) * z.oneminusQinv
    }
    
    func (z *Zipf) hinv(x float64) float64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 14:29:30 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top