HomeSort by relevance Sort by last modified time
    Searched full:isinf (Results 101 - 125 of 984) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/math/
mod.go 24 if y == 0 || IsInf(x, 0) || IsNaN(x) || IsNaN(y) {
remainder.go 46 case IsNaN(x) || IsNaN(y) || IsInf(x, 0) || y == 0:
48 case IsInf(y, 0):
exp.go 105 case IsNaN(x) || IsInf(x, 1):
107 case IsInf(x, -1):
148 case IsNaN(x) || IsInf(x, 1):
150 case IsInf(x, -1):
  /prebuilts/go/linux-x86/src/math/
frexp.go 23 case IsInf(f, 0) || IsNaN(f):
ldexp.go 21 case IsInf(frac, 0) || IsNaN(frac):
mod.go 24 if y == 0 || IsInf(x, 0) || IsNaN(x) || IsNaN(y) {
remainder.go 46 case IsNaN(x) || IsNaN(y) || IsInf(x, 0) || y == 0:
48 case IsInf(y, 0):
  /prebuilts/python/darwin-x86/2.7.5/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/python/linux-x86/2.7.5/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)
  /external/eigen/test/
half_float.cpp 67 VERIFY(!(numext::isinf)(float(half(65504.0f)))); // Largest finite number.
69 VERIFY((numext::isinf)(float(half(__half(0xfc00)))));
71 VERIFY((numext::isinf)(float(half(__half(0x7c00)))));
77 VERIFY((numext::isinf)(float(half(1.0 / 0.0))));
78 VERIFY((numext::isinf)(float(half(-1.0 / 0.0))));
82 VERIFY(!(numext::isinf)(half(__half(0x7bff))));
84 VERIFY((numext::isinf)(half(__half(0xfc00))));
86 VERIFY((numext::isinf)(half(__half(0x7c00))));
92 VERIFY((numext::isinf)(half(1.0 / 0.0)));
93 VERIFY((numext::isinf)(half(-1.0 / 0.0)))
    [all...]
  /external/vulkan-validation-layers/libs/glm/detail/
func_common.inl 780 GLM_FUNC_QUALIFIER bool isinf(
785 "'isinf' only accept floating-point inputs");
793 return std::isinf(x);
797 return isinf(double(x)) != 0;
799 return std::isinf(x);
804 GLM_FUNC_QUALIFIER typename detail::tvec2<T, P>::bool_type isinf
811 "'isinf' only accept floating-point inputs");
814 isinf(x.x),
815 isinf(x.y));
819 GLM_FUNC_QUALIFIER typename detail::tvec3<T, P>::bool_type isinf
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mpfloat.go 130 if math.IsInf(x, 0) && nsavederrors+nerrors == 0 {
142 if math.IsInf(x, 0) && nsavederrors+nerrors == 0 {
195 if f.IsInf() {
229 if f.IsInf() {
235 if x, _ := f.Float64(); f.Sign() == 0 == (x == 0) && !math.IsInf(x, 0) {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mpfloat.go 130 if math.IsInf(x, 0) && nsavederrors+nerrors == 0 {
142 if math.IsInf(x, 0) && nsavederrors+nerrors == 0 {
195 if f.IsInf() {
229 if f.IsInf() {
235 if x, _ := f.Float64(); f.Sign() == 0 == (x == 0) && !math.IsInf(x, 0) {
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_csqrt.c 62 if (isinf(b))
68 if (isinf(a)) {
s_csqrtf.c 53 if (isinf(b))
59 if (isinf(a)) {
s_csqrtl.c 62 if (isinf(b))
68 if (isinf(a)) {
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/Ia32/
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";
  /external/pdfium/third_party/lcms2-2.6/
0014-avoid-fixed-inf.patch 18 + if (isinf(y))
37 + if (isinf(Val))
  /prebuilts/go/darwin-x86/test/
cmplxdivide.c 54 return !isinf(creal(d)) && !isinf(cimag(d)) && (isnan(creal(d)) || isnan(cimag(d)));
  /prebuilts/go/linux-x86/test/
cmplxdivide.c 54 return !isinf(creal(d)) && !isinf(cimag(d)) && (isnan(creal(d)) || isnan(cimag(d)));
  /external/libcxx/test/libcxx/numerics/c.math/
constexpr-fns.pass.cpp 10 // Check that the overloads of std::__libcpp_{isnan,isinf,isfinite} that take
  /external/libcxx/test/std/numerics/complex.number/complex.value.ops/
abs.pass.cpp 45 assert(std::isinf(r) && r > 0);
norm.pass.cpp 45 assert(std::isinf(r) && r > 0);
  /external/python/cpython2/Include/
pymath.h 115 # define Py_IS_INFINITY(X) isinf(X)
197 * OpenBSD uses 'isinf()' because a compiler bug on that platform causes
203 * According to Tim's checkin, the FreeBSD systems use isinf() to work
207 #define Py_OVERFLOWED(X) isinf(X)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
sqrt_const.go 51 if got := math.Sqrt(math.Inf(1)); !math.IsInf(got, 1) {

Completed in 1035 milliseconds

1 2 3 45 6 7 8 91011>>