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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/math/
remainder.go 37 func Remainder(x, y float64) float64
39 func remainder(x, y float64) float64 {
signbit.go 8 func Signbit(x float64) bool {
  /prebuilts/go/darwin-x86/src/testing/
allocs.go 12 // Although the return value has type float64, it will always be an integral value.
20 func AllocsPerRun(runs int, f func()) (avg float64) {
41 // We are forced to return a float64 because the API is silly, but do
44 return float64(mallocs / uint64(runs))
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug011.go 14 func (t *T) m(a int, b float64) int {
bug056.go 9 func frexp() (a int, b float64) {
bug230.go 11 type F float64
bug258.go 11 func f() float64 {
bug297.go 11 type ByteSize float64
bug307.go 13 var f float64
bug442.go 16 Y float64
bug447.go 56 if math.Abs(float64(f$F) - f) < 0.05 {
63 `func test$I(f float64, i int64) {
80 f float64
93 var funcs = []func(float64, int64){
issue12525.go 15 var f float64
issue13485.go 12 _ [float64(10)]int // ERROR "invalid array bound"
issue4264.go 13 var y float64
issue8074.go 14 m := make(map[float64][]byte)
issue8501.go 10 f float64
  /prebuilts/go/linux-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/linux-x86/src/math/
atan2.go 29 func Atan2(y, x float64) float64
31 func atan2(y, x float64) float64 {
remainder.go 37 func Remainder(x, y float64) float64
39 func remainder(x, y float64) float64 {
signbit.go 8 func Signbit(x float64) bool {
  /prebuilts/go/linux-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 {
  /prebuilts/go/linux-x86/src/testing/
allocs.go 12 // Although the return value has type float64, it will always be an integral value.
20 func AllocsPerRun(runs int, f func()) (avg float64) {
41 // We are forced to return a float64 because the API is silly, but do
44 return float64(mallocs / uint64(runs))

Completed in 174 milliseconds

1 2 3 4 5 6 7 8 91011>>