HomeSort by relevance Sort by last modified time
    Searched defs:Float64 (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /prebuilts/go/darwin-x86/test/alias3.dir/
a.go 10 Float64 = float64
31 M1(IntAlias2) Float64
36 M1(Int) float64
  /prebuilts/go/darwin-x86/test/
cmplx.go 14 Float64 float64
21 f64 float64
23 F64 Float64
  /prebuilts/go/linux-x86/test/alias3.dir/
a.go 10 Float64 = float64
31 M1(IntAlias2) Float64
36 M1(Int) float64
  /prebuilts/go/linux-x86/test/
cmplx.go 14 Float64 float64
21 f64 float64
23 F64 Float64
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mpfloat.go 72 func (a *Mpflt) AddFloat64(c float64) {
103 func (a *Mpflt) MulFloat64(c float64) {
126 func (a *Mpflt) CmpFloat64(c float64) int {
133 func (a *Mpflt) Float64() float64 {
134 x, _ := a.Val.Float64()
138 Fatalf("ovf in Mpflt Float64")
144 func (a *Mpflt) Float32() float64 {
146 x := float64(x32)
156 func (a *Mpflt) SetFloat64(c float64) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/
options.go 68 func (goFlags) Float64(o string, d float64, c string) *float64 {
69 return flag.Float64(o, d, c)
84 func (goFlags) Float64Var(f *float64, o string, d float64, c string) {
  /prebuilts/go/darwin-x86/src/math/big/
rat.go 30 func (z *Rat) SetFloat64(f float64) *Rat {
155 f = float32(math.Ldexp(float64(mantissa), exp-Msize1))
156 if math.IsInf(float64(f), 0) {
162 // quotToFloat64 returns the non-negative float64 value
166 func quotToFloat64(a, b nat) (f float64, exact bool) {
195 // This is 2 or 3 more than the float64 mantissa field width of Msize:
253 f = math.Ldexp(float64(mantissa), exp-Msize1)
276 // Float64 returns the nearest float64 value for x and a bool indicating
278 // be represented by a float64, f is an infinity and exact is false
    [all...]
  /prebuilts/go/darwin-x86/src/math/rand/
rand.go 8 // Float64 and Int, use a default shared Source that produces a deterministic
174 // Float64 returns, as a float64, a pseudo-random number in [0.0,1.0).
175 func (r *Rand) Float64() float64 {
177 // return float64(r.Int63n(1<<53)) / (1<<53)
179 // return float64(r.Int63()) / (1 << 63)
186 // We tried to fix this by mapping 1.0 back to 0.0, but since float64
193 f := float64(r.Int63()) / (1 << 63)
202 // Same rationale as in Float64: we want to preserve the Go 1 valu
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mpfloat.go 72 func (a *Mpflt) AddFloat64(c float64) {
103 func (a *Mpflt) MulFloat64(c float64) {
126 func (a *Mpflt) CmpFloat64(c float64) int {
133 func (a *Mpflt) Float64() float64 {
134 x, _ := a.Val.Float64()
138 Fatalf("ovf in Mpflt Float64")
144 func (a *Mpflt) Float32() float64 {
146 x := float64(x32)
156 func (a *Mpflt) SetFloat64(c float64) {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/
options.go 68 func (goFlags) Float64(o string, d float64, c string) *float64 {
69 return flag.Float64(o, d, c)
84 func (goFlags) Float64Var(f *float64, o string, d float64, c string) {
  /prebuilts/go/linux-x86/src/math/big/
rat.go 30 func (z *Rat) SetFloat64(f float64) *Rat {
155 f = float32(math.Ldexp(float64(mantissa), exp-Msize1))
156 if math.IsInf(float64(f), 0) {
162 // quotToFloat64 returns the non-negative float64 value
166 func quotToFloat64(a, b nat) (f float64, exact bool) {
195 // This is 2 or 3 more than the float64 mantissa field width of Msize:
253 f = math.Ldexp(float64(mantissa), exp-Msize1)
276 // Float64 returns the nearest float64 value for x and a bool indicating
278 // be represented by a float64, f is an infinity and exact is false
    [all...]
  /prebuilts/go/linux-x86/src/math/rand/
rand.go 8 // Float64 and Int, use a default shared Source that produces a deterministic
174 // Float64 returns, as a float64, a pseudo-random number in [0.0,1.0).
175 func (r *Rand) Float64() float64 {
177 // return float64(r.Int63n(1<<53)) / (1<<53)
179 // return float64(r.Int63()) / (1 << 63)
186 // We tried to fix this by mapping 1.0 back to 0.0, but since float64
193 f := float64(r.Int63()) / (1 << 63)
202 // Same rationale as in Float64: we want to preserve the Go 1 valu
    [all...]
  /external/golang-protobuf/proto/
lib.go 321 float64s []float64
383 // Float64 is a helper routine that allocates a new float64 value
385 func Float64(v float64) *float64 {
595 case reflect.Float64:
596 f := new(float64)
598 *f = dv.(float64)
600 *(fptr.(**float64)) =
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
decode.go 55 // float64, for JSON numbers
199 // Float64 returns the number as a float64.
200 func (n Number) Float64() (float64, error) {
823 // convertNumber converts the number literal s to a float64 or a Number
1017 case reflect.Float32, reflect.Float64:
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
decode.go 55 // float64, for JSON numbers
199 // Float64 returns the number as a float64.
200 func (n Number) Float64() (float64, error) {
823 // convertNumber converts the number literal s to a float64 or a Number
1017 case reflect.Float32, reflect.Float64:
    [all...]
  /external/clang/include/clang/Basic/
TargetBuiltins.h 119 Float64
  /external/deqp/framework/common/
tcuFloat.hpp 133 typedef Float<deUint64, 11, 52, 1023, FLOAT_HAS_SIGN|FLOAT_SUPPORT_DENORM> Float64; //!< IEEE 754 64-bit floating-point value
162 *this = convert(Float64(u64));
178 deUint64 u64 = Float64::convert(*this).bits();
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
TargetBuiltins.h 123 Float64
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Basic/
TargetBuiltins.h 123 Float64
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Basic/
TargetBuiltins.h 123 Float64
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Basic/
TargetBuiltins.h 123 Float64
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Basic/
TargetBuiltins.h 123 Float64
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Basic/
TargetBuiltins.h 123 Float64
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Basic/
TargetBuiltins.h 123 Float64
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
TargetBuiltins.h 123 Float64

Completed in 1082 milliseconds

1 2 3 4