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

1 2 3 4 5 6 7 891011>>

  /prebuilts/go/darwin-x86/src/math/
sincos.go 15 func Sincos(x float64) (sin, cos float64)
17 func sincos(x float64) (sin, cos float64) {
40 y := float64(j) // integer part of x/(Pi/4), as float
sin.go 93 var _sin = [...]float64{
103 var _cos = [...]float64{
117 func Cos(x float64) float64
119 func cos(x float64) float64 {
139 y := float64(j) // integer part of x/(Pi/4), as float
174 func Sin(x float64) float64
176 func sin(x float64) float64
    [all...]
tanh.go 57 var tanhP = [...]float64{
62 var tanhQ = [...]float64{
74 func Tanh(x float64) float64
76 func tanh(x float64) float64 {
pow10.go 9 var pow10tab [70]float64
16 func Pow10(e int) float64 {
atan2.go 29 func Atan2(y, x float64) float64
31 func atan2(y, x float64) float64 {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
sqrt_const.go 14 in float64 // used for error messages, not an input
15 got float64
16 want float64
28 in float64 // used for error messages, not an input
29 got float64
  /prebuilts/go/linux-x86/src/math/
sincos.go 15 func Sincos(x float64) (sin, cos float64)
17 func sincos(x float64) (sin, cos float64) {
40 y := float64(j) // integer part of x/(Pi/4), as float
sin.go 93 var _sin = [...]float64{
103 var _cos = [...]float64{
117 func Cos(x float64) float64
119 func cos(x float64) float64 {
139 y := float64(j) // integer part of x/(Pi/4), as float
174 func Sin(x float64) float64
176 func sin(x float64) float64
    [all...]
tanh.go 57 var tanhP = [...]float64{
62 var tanhQ = [...]float64{
74 func Tanh(x float64) float64
76 func tanh(x float64) float64 {
pow10.go 9 var pow10tab [70]float64
16 func Pow10(e int) float64 {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mpfloat.go 65 func (a *Mpflt) AddFloat64(c float64) {
96 func (a *Mpflt) MulFloat64(c float64) {
119 func (a *Mpflt) CmpFloat64(c float64) int {
126 func (a *Mpflt) Float64() float64 {
127 x, _ := a.Val.Float64()
131 yyerror("ovf in Mpflt Float64")
137 func (a *Mpflt) Float32() float64 {
139 x := float64(x32)
149 func (a *Mpflt) SetFloat64(c float64) {
    [all...]
  /prebuilts/go/darwin-x86/test/
zerodivide.go 40 f, g, h float64 = 0, 0, 1
42 f64, g64, h64, inf, negInf, nan float64 = 0, 0, 1, math.Inf(1), math.Inf(-1), math.NaN()
148 ErrorTest{"float64 0/0", func() { use(f / g) }, ""},
150 ErrorTest{"float64 0/0", func() { use(f64 / g64) }, ""},
152 ErrorTest{"float64 1/0", func() { use(h / g) }, ""},
154 ErrorTest{"float64 1/0", func() { use(h64 / g64) }, ""},
155 ErrorTest{"float64 inf/0", func() { use(inf / g64) }, ""},
156 ErrorTest{"float64 -inf/0", func() { use(negInf / g64) }, ""},
157 ErrorTest{"float64 nan/0", func() { use(nan / g64) }, ""},
180 f, g float64
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mpfloat.go 65 func (a *Mpflt) AddFloat64(c float64) {
96 func (a *Mpflt) MulFloat64(c float64) {
119 func (a *Mpflt) CmpFloat64(c float64) int {
126 func (a *Mpflt) Float64() float64 {
127 x, _ := a.Val.Float64()
131 yyerror("ovf in Mpflt Float64")
137 func (a *Mpflt) Float32() float64 {
139 x := float64(x32)
149 func (a *Mpflt) SetFloat64(c float64) {
    [all...]
  /prebuilts/go/linux-x86/test/
zerodivide.go 40 f, g, h float64 = 0, 0, 1
42 f64, g64, h64, inf, negInf, nan float64 = 0, 0, 1, math.Inf(1), math.Inf(-1), math.NaN()
148 ErrorTest{"float64 0/0", func() { use(f / g) }, ""},
150 ErrorTest{"float64 0/0", func() { use(f64 / g64) }, ""},
152 ErrorTest{"float64 1/0", func() { use(h / g) }, ""},
154 ErrorTest{"float64 1/0", func() { use(h64 / g64) }, ""},
155 ErrorTest{"float64 inf/0", func() { use(inf / g64) }, ""},
156 ErrorTest{"float64 -inf/0", func() { use(negInf / g64) }, ""},
157 ErrorTest{"float64 nan/0", func() { use(nan / g64) }, ""},
180 f, g float64
    [all...]
  /prebuilts/go/darwin-x86/doc/progs/
json2.go 20 r := i.(float64)
28 case float64:
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue17005.go 23 func Drotmg(d1, d2, x1, y1 float64) (p DrotmParams, rd1, rd2, rx1 float64) {
  /prebuilts/go/linux-x86/doc/progs/
json2.go 20 r := i.(float64)
28 case float64:
  /prebuilts/go/linux-x86/test/fixedbugs/
issue17005.go 23 func Drotmg(d1, d2, x1, y1 float64) (p DrotmParams, rd1, rd2, rx1 float64) {
  /prebuilts/go/darwin-x86/src/math/rand/
rand_test.go 25 mean float64
26 stddev float64
27 closeEnough float64
28 maxError float64
31 func max(a, b float64) float64 {
38 func nearEqual(a, b, closeEnough, maxError float64) bool {
64 func getStatsResults(samples []float64) *statsResults {
66 var sum, squaresum float64
71 res.mean = sum / float64(len(samples)
    [all...]
  /prebuilts/go/linux-x86/src/math/rand/
rand_test.go 25 mean float64
26 stddev float64
27 closeEnough float64
28 maxError float64
31 func max(a, b float64) float64 {
38 func nearEqual(a, b, closeEnough, maxError float64) bool {
64 func getStatsResults(samples []float64) *statsResults {
66 var sum, squaresum float64
71 res.mean = sum / float64(len(samples)
    [all...]
  /prebuilts/go/darwin-x86/src/fmt/
stringer_test.go 23 type TF float64
25 type TF64 float64
40 func (v TF) String() string { return Sprintf("F: %f", float64(v)) }
42 func (v TF64) String() string { return Sprintf("F64: %f", float64(v)) }
  /prebuilts/go/darwin-x86/src/math/cmplx/
abs.go 12 func Abs(x complex128) float64 { return math.Hypot(real(x), imag(x)) }
phase.go 11 func Phase(x complex128) float64 { return math.Atan2(imag(x), real(x)) }
polar.go 10 func Polar(x complex128) (r, ? float64) {
rect.go 10 func Rect(r, ? float64) complex128 {

Completed in 406 milliseconds

1 2 3 4 5 6 7 891011>>