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

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/runtime/
sqrt_test.go 16 func SqrtRT(x float64) float64 {
34 func alike(a, b float64) bool {
44 var vf = []float64{
57 var sqrt = []float64{
70 var vfsqrtSC = []float64{
79 var sqrtSC = []float64{
complex.go 7 func isposinf(f float64) bool { return f > maxFloat64 }
8 func isneginf(f float64) bool { return f < -maxFloat64 }
9 func isnan(f float64) bool { return f != f }
11 func nan() float64 {
12 var f float64 = 0
16 func posinf() float64 {
17 var f float64 = maxFloat64
21 func neginf() float64 {
22 var f float64 = maxFloat64
fastlog2table.go 9 var fastlog2Table = [1<<fastlogNumBits + 1]float64{
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue12577.go 26 y0 float64 = z0
27 y1 float64 = z1
28 y2 float64 = z2
29 y3 float64 = z3
33 if f != 0 || math.Signbit(float64(f)) {
39 func test64(f float64) {
47 if f := -x0; f != 0 || !math.Signbit(float64(f)) {
issue14651.go 47 test64(float64(m0000p1074), f64(m0000p1074))
48 test64(float64(m1000p1074), f64(m1000p1074))
49 test64(float64(m1001p1074), f64(m1001p1074))
50 test64(float64(m1011p1074), f64(m1011p1074))
51 test64(float64(m1100p1074), f64(m1100p1074))
54 func f32(x float64) float32 { return float32(x) }
55 func f64(x float64) float64 { return float64(x) }
65 func test64(a, b float64) {
    [all...]
bug154.go 13 return fmt.Sprintf("%v", float64(f));
19 x := float64(float32(f)); // appears to change the precision of f
21 return fmt.Sprintf("%v", float64(f));
bug470.go 18 var F = float64(float32(0.01))
21 // 0.01 rounded to float32 then to float64 is F32.
22 // 0.01 represented directly in float64 is F64.
  /prebuilts/go/linux-x86/src/math/
nextafter.go 15 case IsNaN(float64(x)) || IsNaN(float64(y)): // special case
20 r = float32(Copysign(float64(Float32frombits(1)), float64(y)))
29 // Nextafter returns the next representable float64 value after x towards y.
35 func Nextafter(x, y float64) (r float64) {
frexp.go 16 func Frexp(f float64) (frac float64, exp int)
18 func frexp(f float64) (frac float64, exp int) {
hypot.go 19 func Hypot(p, q float64) float64
21 func hypot(p, q float64) float64 {
mod.go 21 func Mod(x, y float64) float64
23 func mod(x, y float64) float64 {
sinh.go 25 func Sinh(x float64) float64
27 func sinh(x float64) float64 {
45 var temp float64
71 func Cosh(x float64) float64
73 func cosh(x float64) float64 {
  /prebuilts/go/linux-x86/src/runtime/
sqrt_test.go 16 func SqrtRT(x float64) float64 {
34 func alike(a, b float64) bool {
44 var vf = []float64{
57 var sqrt = []float64{
70 var vfsqrtSC = []float64{
79 var sqrtSC = []float64{
complex.go 7 func isposinf(f float64) bool { return f > maxFloat64 }
8 func isneginf(f float64) bool { return f < -maxFloat64 }
9 func isnan(f float64) bool { return f != f }
11 func nan() float64 {
12 var f float64 = 0
16 func posinf() float64 {
17 var f float64 = maxFloat64
21 func neginf() float64 {
22 var f float64 = maxFloat64
fastlog2table.go 9 var fastlog2Table = [1<<fastlogNumBits + 1]float64{
  /prebuilts/go/linux-x86/test/fixedbugs/
issue12577.go 26 y0 float64 = z0
27 y1 float64 = z1
28 y2 float64 = z2
29 y3 float64 = z3
33 if f != 0 || math.Signbit(float64(f)) {
39 func test64(f float64) {
47 if f := -x0; f != 0 || !math.Signbit(float64(f)) {
issue14651.go 47 test64(float64(m0000p1074), f64(m0000p1074))
48 test64(float64(m1000p1074), f64(m1000p1074))
49 test64(float64(m1001p1074), f64(m1001p1074))
50 test64(float64(m1011p1074), f64(m1011p1074))
51 test64(float64(m1100p1074), f64(m1100p1074))
54 func f32(x float64) float32 { return float32(x) }
55 func f64(x float64) float64 { return float64(x) }
65 func test64(a, b float64) {
    [all...]
bug154.go 13 return fmt.Sprintf("%v", float64(f));
19 x := float64(float32(f)); // appears to change the precision of f
21 return fmt.Sprintf("%v", float64(f));
bug470.go 18 var F = float64(float32(0.01))
21 // 0.01 rounded to float32 then to float64 is F32.
22 // 0.01 represented directly in float64 is F64.
  /prebuilts/go/darwin-x86/src/math/
frexp.go 16 func Frexp(f float64) (frac float64, exp int)
18 func frexp(f float64) (frac float64, exp int) {
hypot.go 19 func Hypot(p, q float64) float64
21 func hypot(p, q float64) float64 {
mod.go 21 func Mod(x, y float64) float64
23 func mod(x, y float64) float64 {
sinh.go 25 func Sinh(x float64) float64
27 func sinh(x float64) float64 {
45 var temp float64
71 func Cosh(x float64) float64
73 func cosh(x float64) float64 {
  /prebuilts/go/darwin-x86/test/ken/
robfunc.go 28 func f4(a, b int, c float64) int {
40 func f7(a int) (x int, y float64) {
45 func f8(a int) (x int, y float64) {
53 func (t *T) m10(a int, b float64) int {
58 func f9(a int) (in int, fl float64) {
60 f := float64(9)
77 var s7 float64
82 var s8 float64
87 var s9 float64
  /prebuilts/go/linux-x86/test/ken/
robfunc.go 28 func f4(a, b int, c float64) int {
40 func f7(a int) (x int, y float64) {
45 func f8(a int) (x int, y float64) {
53 func (t *T) m10(a int, b float64) int {
58 func f9(a int) (in int, fl float64) {
60 f := float64(9)
77 var s7 float64
82 var s8 float64
87 var s9 float64

Completed in 333 milliseconds

1 2 34 5 6 7 8 91011>>