HomeSort by relevance Sort by last modified time
    Searched refs:float64 (Results 151 - 175 of 893) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug090.go 22 var f float64;
40 const g float64 = 1.0;
43 const h float64 = 3.14;
issue11286.go 17 a [D]float64
19 c [D]float64
issue5793.go 12 func complexArgs() (float64, float64) {
issue7675.go 11 func f(string, int, float64, string)
13 func g(string, int, float64, ...string)
issue9521.go 13 func g() (x []int, y float64) { return }
17 _ = append(g()) // ERROR "cannot append float64 value to \[\]int"
  /prebuilts/go/linux-x86/src/math/
unsafe.go 17 func Float64bits(f float64) uint64 { return *(*uint64)(unsafe.Pointer(&f)) }
21 func Float64frombits(b uint64) float64 { return *(*float64)(unsafe.Pointer(&b)) }
jn.go 53 func Jn(n int, x float64) float64 {
87 var b float64
88 if float64(n) <= x {
105 var temp float64
120 a, b = b, b*(float64(i+i)/x)-a // avoid underflow
135 a *= float64(i) // a = n!
170 w := float64(n+n) / x
184 t = 1 / (float64(i)/x - t)
196 tmp := float64(n
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
fastlog2_test.go 17 var e float64
25 l, fl := math.Log2(float64(i)), runtime.Fastlog2(float64(i))
mkfastlog2table.go 32 fmt.Fprintln(&buf, "var fastlog2Table = [1<<fastlogNumBits + 1]float64{")
46 func computeTable() []float64 {
47 fastlog2Table := make([]float64, 1<<fastlogNumBits+1)
49 fastlog2Table[i] = math.Log2(1.0 + float64(i)/(1<<fastlogNumBits))
  /prebuilts/go/linux-x86/src/testing/
allocs_test.go 14 allocs float64
18 {"alloc float64", func() { global = new(float64) }, 1},
  /prebuilts/go/linux-x86/test/fixedbugs/
bug090.go 22 var f float64;
40 const g float64 = 1.0;
43 const h float64 = 3.14;
  /prebuilts/go/darwin-x86/src/math/
jn.go 53 func Jn(n int, x float64) float64 {
87 var b float64
88 if float64(n) <= x {
105 var temp float64
120 a, b = b, b*(float64(i+i)/x)-a // avoid underflow
135 a *= float64(i) // a = n!
170 w := float64(n+n) / x
184 t = 1 / (float64(i)/x - t)
196 tmp := float64(n
    [all...]
abs.go 12 func Abs(x float64) float64 {
atan.go 55 func xatan(x float64) float64 {
76 func satan(x float64) float64 {
95 func Atan(x float64) float64
97 func atan(x float64) float64 {
  /prebuilts/go/darwin-x86/src/runtime/
mkfastlog2table.go 32 fmt.Fprintln(&buf, "var fastlog2Table = [1<<fastlogNumBits + 1]float64{")
46 func computeTable() []float64 {
47 fastlog2Table := make([]float64, 1<<fastlogNumBits+1)
49 fastlog2Table[i] = math.Log2(1.0 + float64(i)/(1<<fastlogNumBits))
vlop_arm_test.go 87 func armFloatWrite(a *[129]float64) {
104 var a [129]float64
106 a[i] = float64(i)
110 if x != float64(i) {
117 func armFloatRead(a *[129]float64) float64 {
121 var a [129]float64
123 a[i] = float64(i)
  /prebuilts/go/darwin-x86/test/fixedbugs/issue8060.dir/
a.go 7 var A = []*[2][1]float64{}
b.go 12 _ = [3][1]float64{}
  /prebuilts/go/darwin-x86/test/
shift2.go 15 func h(x float64) int { return 0 }
41 c2 float64 = 2 << c // c2 == 64.0 (type float64)
44 f2 = h(2 << c) // == h(float64(64.0))
method1.go 15 func (t *T) M(int, float64) {} // ERROR "redeclared|redefinition"
21 func f(int, float64) {} // ERROR "redeclared|redefinition"
  /prebuilts/go/linux-x86/test/fixedbugs/issue8060.dir/
a.go 7 var A = []*[2][1]float64{}
b.go 12 _ = [3][1]float64{}
  /prebuilts/go/linux-x86/test/
shift2.go 15 func h(x float64) int { return 0 }
41 c2 float64 = 2 << c // c2 == 64.0 (type float64)
44 f2 = h(2 << c) // == h(float64(64.0))
  /external/flatbuffers/python/flatbuffers/
packer.py 38 float64 = struct.Struct("<d") variable
  /prebuilts/go/darwin-x86/src/strconv/
fp_test.go 16 func pow2(i int) float64 {
30 func myatof64(s string) (f float64, ok bool) {
42 v := float64(n)
43 // We expect that v*pow2(e) fits in a float64,
87 return float32(float64(n) * pow2(e)), true
117 var v float64
119 case "float64":
134 v = float64(v1)

Completed in 716 milliseconds

1 2 3 4 5 67 8 91011>>