HomeSort by relevance Sort by last modified time
    Searched defs:Frexp (Results 1 - 2 of 2) sorted by null

  /prebuilts/go/darwin-x86/src/math/
frexp.go 7 // Frexp breaks f into a normalized fraction
13 // Frexp(±0) = ±0, 0
14 // Frexp(±Inf) = ±Inf, 0
15 // Frexp(NaN) = NaN, 0
16 func Frexp(f float64) (frac float64, exp int)
18 func frexp(f float64) (frac float64, exp int) { func
  /prebuilts/go/linux-x86/src/math/
frexp.go 7 // Frexp breaks f into a normalized fraction
13 // Frexp(±0) = ±0, 0
14 // Frexp(±Inf) = ±Inf, 0
15 // Frexp(NaN) = NaN, 0
16 func Frexp(f float64) (frac float64, exp int)
18 func frexp(f float64) (frac float64, exp int) { func

Completed in 70 milliseconds