/prebuilts/go/darwin-x86/src/math/cmplx/ |
isinf.go | 9 // IsInf returns true if either real(x) or imag(x) is an infinity. 10 func IsInf(x complex128) bool { 11 if math.IsInf(real(x), 0) || math.IsInf(imag(x), 0) {
|
isnan.go | 13 case math.IsInf(real(x), 0) || math.IsInf(imag(x), 0):
|
/prebuilts/go/linux-x86/src/math/cmplx/ |
isinf.go | 9 // IsInf returns true if either real(x) or imag(x) is an infinity. 10 func IsInf(x complex128) bool { 11 if math.IsInf(real(x), 0) || math.IsInf(imag(x), 0) {
|
isnan.go | 13 case math.IsInf(real(x), 0) || math.IsInf(imag(x), 0):
|
/prebuilts/go/darwin-x86/src/math/ |
dim.go | 31 case IsInf(x, 1) || IsInf(y, 1): 58 case IsInf(x, -1) || IsInf(y, -1):
|
atan2.go | 43 case IsInf(x, 0): 44 if IsInf(x, 1) { 46 case IsInf(y, 0): 53 case IsInf(y, 0): 58 case IsInf(y, 0):
|
bits.go | 39 // IsInf reports whether f is an infinity, according to sign. 40 // If sign > 0, IsInf reports whether f is positive infinity. 41 // If sign < 0, IsInf reports whether f is negative infinity. 42 // If sign == 0, IsInf reports whether f is either infinity. 43 func IsInf(f float64, sign int) bool {
|
hypot.go | 24 case IsInf(p, 0) || IsInf(q, 0):
|
floor.go | 16 if x == 0 || IsNaN(x) || IsInf(x, 0) { 51 if x == 0 || IsNaN(x) || IsInf(x, 0) {
|
logb.go | 18 case IsInf(x, 0): 39 case IsInf(x, 0):
|
pow.go | 63 case IsInf(y, 0): 67 case (Abs(x) < 1) == IsInf(y, 1): 72 case IsInf(x, 0): 73 if IsInf(x, -1) {
|
frexp.go | 23 case IsInf(f, 0) || IsNaN(f):
|
mod.go | 24 if y == 0 || IsInf(x, 0) || IsNaN(x) || IsNaN(y) {
|
/prebuilts/go/linux-x86/src/math/ |
dim.go | 31 case IsInf(x, 1) || IsInf(y, 1): 58 case IsInf(x, -1) || IsInf(y, -1):
|
atan2.go | 43 case IsInf(x, 0): 44 if IsInf(x, 1) { 46 case IsInf(y, 0): 53 case IsInf(y, 0): 58 case IsInf(y, 0):
|
bits.go | 39 // IsInf reports whether f is an infinity, according to sign. 40 // If sign > 0, IsInf reports whether f is positive infinity. 41 // If sign < 0, IsInf reports whether f is negative infinity. 42 // If sign == 0, IsInf reports whether f is either infinity. 43 func IsInf(f float64, sign int) bool {
|
hypot.go | 24 case IsInf(p, 0) || IsInf(q, 0):
|
floor.go | 16 if x == 0 || IsNaN(x) || IsInf(x, 0) { 51 if x == 0 || IsNaN(x) || IsInf(x, 0) {
|
logb.go | 18 case IsInf(x, 0): 39 case IsInf(x, 0):
|
pow.go | 63 case IsInf(y, 0): 67 case (Abs(x) < 1) == IsInf(y, 1): 72 case IsInf(x, 0): 73 if IsInf(x, -1) {
|
frexp.go | 23 case IsInf(f, 0) || IsNaN(f):
|
/prebuilts/go/darwin-x86/test/ |
cmplxdivide.go | 29 case cmplx.IsInf(a) && cmplx.IsInf(b):
|
/prebuilts/go/linux-x86/test/ |
cmplxdivide.go | 29 case cmplx.IsInf(a) && cmplx.IsInf(b):
|
/prebuilts/go/darwin-x86/src/go/constant/ |
go13.go | 20 if math.IsInf(float64(x32), 0) {
|
/prebuilts/go/linux-x86/src/go/constant/ |
go13.go | 20 if math.IsInf(float64(x32), 0) {
|