HomeSort by relevance Sort by last modified time
    Searched full:float64 (Results 1 - 25 of 1455) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/math/
arith_s390x.go 7 func log10TrampolineSetup(x float64) float64
8 func log10Asm(x float64) float64
10 func cosTrampolineSetup(x float64) float64
11 func cosAsm(x float64) float64
13 func coshTrampolineSetup(x float64) float64
    [all...]
log10.go 9 func Log10(x float64) float64
11 func log10(x float64) float64 {
17 func Log2(x float64) float64
19 func log2(x float64) float64 {
24 return float64(exp - 1)
26 return Log(frac)*(1/Ln2) + float64(exp
    [all...]
floor.go 13 func Floor(x float64) float64
15 func floor(x float64) float64 {
36 func Ceil(x float64) float64
38 func ceil(x float64) float64 {
48 func Trunc(x float64) float64
    [all...]
floor_arm64.s 7 // func Floor(x float64) float64
14 // func Ceil(x float64) float64
21 // func Trunc(x float64) float64
floor_s390x.s 7 // func Floor(x float64) float64
14 // func Ceil(x float64) float64
21 // func Trunc(x float64) float64
  /prebuilts/go/linux-x86/src/math/
arith_s390x.go 7 func log10TrampolineSetup(x float64) float64
8 func log10Asm(x float64) float64
10 func cosTrampolineSetup(x float64) float64
11 func cosAsm(x float64) float64
13 func coshTrampolineSetup(x float64) float64
    [all...]
log10.go 9 func Log10(x float64) float64
11 func log10(x float64) float64 {
17 func Log2(x float64) float64
19 func log2(x float64) float64 {
24 return float64(exp - 1)
26 return Log(frac)*(1/Ln2) + float64(exp
    [all...]
floor.go 13 func Floor(x float64) float64
15 func floor(x float64) float64 {
36 func Ceil(x float64) float64
38 func ceil(x float64) float64 {
48 func Trunc(x float64) float64
    [all...]
floor_arm64.s 7 // func Floor(x float64) float64
14 // func Ceil(x float64) float64
21 // func Trunc(x float64) float64
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7044.go 20 // Use all 16 registers to do float32 --> float64 conversion.
22 float64(f0), float64(f1), float64(f2), float64(f3), float64(f4), float64(f5), float64(f6), float64(f7), float64(f8), float64(f9), float64(f10), float64(f11), float64(f12), float64(f13), float64(f14), float64(f1 (…)
    [all...]
bug109.go 9 func f(a float64) float64 {
18 (<float64>FLOAT64)
21 (<float64>FLOAT64)
24 (<float64>FLOAT64)
bug411.go 9 // used as a memory operand of a int64->float64 move.
14 f2(float64(a), float64(a))
17 func f2(a,b float64) {
bug409.go 12 func F(v [2]float64) [2]float64 {
13 return [2]float64{v[0], v[1]}
17 a := F([2]float64{1, 2})
18 b := F([2]float64{3, 4})
bug331.go 11 func f() (_ string, x float64, err error) {
15 func g() (_ string, x float64, err error) {
19 var _ func() (string, float64, error) = f
20 var _ func() (string, float64, error) = g
32 bug331.go:12: cannot use "hello" (type string) as type float64 in assignment
33 bug331.go:12: cannot use 0 (type float64) as type os.Error in assignment:
34 float64 does not implement os.Error (missing String method)
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7044.go 20 // Use all 16 registers to do float32 --> float64 conversion.
22 float64(f0), float64(f1), float64(f2), float64(f3), float64(f4), float64(f5), float64(f6), float64(f7), float64(f8), float64(f9), float64(f10), float64(f11), float64(f12), float64(f13), float64(f14), float64(f1 (…)
    [all...]
bug109.go 9 func f(a float64) float64 {
18 (<float64>FLOAT64)
21 (<float64>FLOAT64)
24 (<float64>FLOAT64)
bug411.go 9 // used as a memory operand of a int64->float64 move.
14 f2(float64(a), float64(a))
17 func f2(a,b float64) {
bug409.go 12 func F(v [2]float64) [2]float64 {
13 return [2]float64{v[0], v[1]}
17 a := F([2]float64{1, 2})
18 b := F([2]float64{3, 4})
bug331.go 11 func f() (_ string, x float64, err error) {
15 func g() (_ string, x float64, err error) {
19 var _ func() (string, float64, error) = f
20 var _ func() (string, float64, error) = g
32 bug331.go:12: cannot use "hello" (type string) as type float64 in assignment
33 bug331.go:12: cannot use 0 (type float64) as type os.Error in assignment:
34 float64 does not implement os.Error (missing String method)
  /prebuilts/go/darwin-x86/src/runtime/
softfloat64_test.go 14 // turn uint64 op into float64 op
15 func fop(f func(x, y uint64) uint64) func(x, y float64) float64 {
16 return func(x, y float64) float64 {
23 func add(x, y float64) float64 { return x + y }
24 func sub(x, y float64) float64 { return x - y }
25 func mul(x, y float64) float64 { return x * y
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
softfloat64_test.go 14 // turn uint64 op into float64 op
15 func fop(f func(x, y uint64) uint64) func(x, y float64) float64 {
16 return func(x, y float64) float64 {
23 func add(x, y float64) float64 { return x + y }
24 func sub(x, y float64) float64 { return x - y }
25 func mul(x, y float64) float64 { return x * y
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/test/issue9510a/
a.go 13 func F(a, b float64) float64 {
14 return float64(C.csquare(C.double(a), C.double(b)))
  /prebuilts/go/darwin-x86/misc/cgo/test/issue9510b/
b.go 13 func F(a, b float64) float64 {
14 return float64(C.csquare(C.double(a), C.double(b)))
  /prebuilts/go/linux-x86/misc/cgo/test/issue9510a/
a.go 13 func F(a, b float64) float64 {
14 return float64(C.csquare(C.double(a), C.double(b)))
  /prebuilts/go/linux-x86/misc/cgo/test/issue9510b/
b.go 13 func F(a, b float64) float64 {
14 return float64(C.csquare(C.double(a), C.double(b)))

Completed in 842 milliseconds

1 2 3 4 5 6 7 8 91011>>