/device/linaro/bootloader/edk2/StdLib/LibC/Main/ |
isinff_ieee754.c | 35 * from: Header: isinf.c,v 1.1 91/07/08 19:03:34 torek Exp
41 static char sccsid[] = "@(#)isinf.c 8.1 (Berkeley) 6/4/93";
51 * 7.12.3.3 isinf - test for infinity
|
isnand_ieee754.c | 35 * from: Header: isinf.c,v 1.1 91/07/08 19:03:34 torek Exp
41 static char sccsid[] = "@(#)isinf.c 8.1 (Berkeley) 6/4/93";
|
isnanf_ieee754.c | 35 * from: Header: isinf.c,v 1.1 91/07/08 19:03:34 torek Exp
41 static char sccsid[] = "@(#)isinf.c 8.1 (Berkeley) 6/4/93";
|
/prebuilts/go/darwin-x86/src/math/ |
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):
|
ldexp.go | 21 case IsInf(frac, 0) || IsNaN(frac):
|
/prebuilts/go/linux-x86/src/math/ |
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) {
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_cproj.c | 39 if (!isinf(creal(z)) && !isinf(cimag(z)))
|
s_cprojf.c | 39 if (!isinf(crealf(z)) && !isinf(cimagf(z)))
|
s_cprojl.c | 39 if (!isinf(creall(z)) && !isinf(cimagl(z)))
|
catrigf.c | 50 #undef isinf macro 51 #define isinf(x) (fabsf(x) == INFINITY) macro 158 if (isinf(x)) 160 if (isinf(y)) 216 if (isinf(x)) 218 if (isinf(y)) 326 if (ix - iy >= CUTOFF << 23 || isinf(x)) 355 if (isinf(x)) 357 if (isinf(y))
|
/external/vulkan-validation-layers/libs/glm/detail/ |
_fixes.hpp | 47 #ifdef isinf 48 #undef isinf macro
|
/external/libcxx/test/std/numerics/complex.number/complex.transcendentals/ |
tanh.pass.cpp | 49 else if (std::isfinite(testcases[i].real()) && std::isinf(testcases[i].imag())) 59 else if (std::isinf(testcases[i].real()) && std::isfinite(testcases[i].imag())) 65 else if (std::isinf(testcases[i].real()) && std::isinf(testcases[i].imag())) 70 else if (std::isinf(testcases[i].real()) && std::isnan(testcases[i].imag()))
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/ |
tanh.pass.cpp | 50 else if (std::isfinite(x[i].real()) && std::isinf(x[i].imag())) 60 else if (std::isinf(x[i].real()) && std::isfinite(x[i].imag())) 66 else if (std::isinf(x[i].real()) && std::isinf(x[i].imag())) 71 else if (std::isinf(x[i].real()) && std::isnan(x[i].imag()))
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/complex.transcendentals/ |
tanh.pass.cpp | 50 else if (std::isfinite(x[i].real()) && std::isinf(x[i].imag())) 60 else if (std::isinf(x[i].real()) && std::isfinite(x[i].imag())) 66 else if (std::isinf(x[i].real()) && std::isinf(x[i].imag())) 71 else if (std::isinf(x[i].real()) && std::isnan(x[i].imag()))
|
/device/linaro/bootloader/edk2/StdLib/LibC/Main/Ia32/ |
isinfl.c | 35 * from: Header: isinf.c,v 1.1 91/07/08 19:03:34 torek Exp
41 static char sccsid[] = "@(#)isinf.c 8.1 (Berkeley) 6/4/93";
56 * 7.12.3.3 isinf - test for infinity
|
/external/libcxx/test/std/numerics/complex.number/complex.value.ops/ |
arg.pass.cpp | 84 if (std::isinf(testcases[i].real()) && std::isinf(testcases[i].imag())) 101 else if (std::isinf(testcases[i].real()))
|
/external/protobuf/src/google/protobuf/stubs/ |
mathlimits.h | 47 // access old-fashioned isinf et al. Even worse more: this file must not 48 // include <cmath> because that breaks the definition of isinf with gcc 4.9. 50 // TODO(mec): after C++11 everywhere, use <cmath> and std::isinf in this file. 122 static bool IsInf(const Type x); 161 static bool IsInf(const Type /*x*/) { return false; } \ 224 #ifdef WIN32 // Lacks built-in isnan() and isinf() 228 static bool IsInf(const Type x) { return (_fpclass(x) & (_FPCLASS_NINF | _FPCLASS_PINF)) != 0; } \ 233 static bool IsFinite(const Type x) { return !isinf(x) && !isnan(x); } \ 235 static bool IsInf(const Type x) { return isinf(x); } [all...] |
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.value.ops/ |
arg.pass.cpp | 84 if (std::isinf(x[i].real()) && std::isinf(x[i].imag())) 101 else if (std::isinf(x[i].real()))
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/complex.value.ops/ |
arg.pass.cpp | 84 if (std::isinf(x[i].real()) && std::isinf(x[i].imag())) 101 else if (std::isinf(x[i].real()))
|
/device/linaro/bootloader/edk2/StdLib/LibC/Main/X64/ |
isnanl.c | 35 * from: Header: isinf.c,v 1.1 91/07/08 19:03:34 torek Exp
41 static char sccsid[] = "@(#)isinf.c 8.1 (Berkeley) 6/4/93";
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
pymath.h | 115 # define Py_IS_INFINITY(X) isinf(X)
175 * OpenBSD uses 'isinf()' because a compiler bug on that platform causes
181 * According to Tim's checkin, the FreeBSD systems use isinf() to work
185 #define Py_OVERFLOWED(X) isinf(X)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
pymath.h | 115 # define Py_IS_INFINITY(X) isinf(X)
175 * OpenBSD uses 'isinf()' because a compiler bug on that platform causes
181 * According to Tim's checkin, the FreeBSD systems use isinf() to work
185 #define Py_OVERFLOWED(X) isinf(X)
|
/prebuilts/gdb/darwin-x86/include/python2.7/ |
pymath.h | 117 # define Py_IS_INFINITY(X) isinf(X) 177 * OpenBSD uses 'isinf()' because a compiler bug on that platform causes 183 * According to Tim's checkin, the FreeBSD systems use isinf() to work 187 #define Py_OVERFLOWED(X) isinf(X)
|
/prebuilts/gdb/linux-x86/include/python2.7/ |
pymath.h | 117 # define Py_IS_INFINITY(X) isinf(X) 177 * OpenBSD uses 'isinf()' because a compiler bug on that platform causes 183 * According to Tim's checkin, the FreeBSD systems use isinf() to work 187 #define Py_OVERFLOWED(X) isinf(X)
|