HomeSort by: relevance | last modified time | path
    Searched refs:isnan (Results 1 - 25 of 303) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/arch/vax/gen/
isnan.c 1 /* $NetBSD: isnan.c,v 1.3 2004/03/04 23:42:39 kleink Exp $ */
37 __RCSID("$NetBSD: isnan.c,v 1.3 2004/03/04 23:42:39 kleink Exp $");
44 #undef isnan macro
45 int isnan __P((double));
49 isnan(double d) function
  /src/external/gpl2/groff/dist/src/libs/libgroff/
hypot.cpp 37 if (isnan(result) && !isnan(x) && !isnan(y))
  /src/external/gpl3/gcc/dist/libgcc/config/rs6000/
_mulkc3.c 40 #define isnan __builtin_isnan macro
61 if (isnan (x) && isnan (y))
71 if (isnan (c)) c = COPYSIGN (0, c);
72 if (isnan (d)) d = COPYSIGN (0, d);
81 if (isnan (a)) a = COPYSIGN (0, a);
82 if (isnan (b)) b = COPYSIGN (0, b);
90 if (isnan (a)) a = COPYSIGN (0, a);
91 if (isnan (b)) b = COPYSIGN (0, b);
92 if (isnan (c)) c = COPYSIGN (0, c)
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/rs6000/
_mulkc3.c 31 #define isnan __builtin_isnan macro
52 if (isnan (x) && isnan (y))
62 if (isnan (c)) c = COPYSIGN (0, c);
63 if (isnan (d)) d = COPYSIGN (0, d);
72 if (isnan (a)) a = COPYSIGN (0, a);
73 if (isnan (b)) b = COPYSIGN (0, b);
81 if (isnan (a)) a = COPYSIGN (0, a);
82 if (isnan (b)) b = COPYSIGN (0, b);
83 if (isnan (c)) c = COPYSIGN (0, c)
    [all...]
  /src/external/gpl3/gdb/dist/gnulib/import/
isnanl-nolibm.h 18 /* Get declaration of isnan macro or (older) isnanl function. */
21 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan.
25 # elif defined isnan
27 # define isnanl(x) isnan ((long double)(x))
isnand-nolibm.h 18 /* Get declaration of isnan macro. */
21 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. */
26 # define isnand(x) isnan ((double)(x))
  /src/external/gpl3/gdb.old/dist/gnulib/import/
isnanl-nolibm.h 18 /* Get declaration of isnan macro or (older) isnanl function. */
21 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan.
25 # elif defined isnan
27 # define isnanl(x) isnan ((long double)(x))
  /src/lib/libm/src/
s_fdim.c 40 if (isnan(x)) \
42 if (isnan(y)) \
w_atan2.c 38 if(_LIB_VERSION == _IEEE_||isnan(x)||isnan(y)) return z;
w_fmod.c 38 if(_LIB_VERSION == _IEEE_ ||isnan(y)||isnan(x)) return z;
w_fmodl.c 38 if(_LIB_VERSION == _IEEE_ ||isnan(y)||isnan(x)) return z;
w_pow.c 36 if(_LIB_VERSION == _IEEE_|| isnan(y)) return z;
37 if(isnan(x)) {
52 if(isnan(z))
e_scalb.c 39 if (isnan(x)||isnan(fn)) return x*fn;
w_j0.c 32 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
48 if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
w_j1.c 33 if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
49 if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
s_isnan.c 19 * isnan(x) returns 1 is x is nan, else 0;
27 isnan(double x) function
w_acosh.c 33 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
w_cosh.c 38 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
w_remainder.c 33 if(_LIB_VERSION == _IEEE_ || isnan(y)) return z;
w_sqrt.c 39 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
w_sqrtl.c 36 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
  /src/sys/external/bsd/compiler_rt/dist/test/Unit/
unorddf2vfp_test.c 26 int expected = (isnan(a) || isnan(b)) ? 1 : 0;
unordsf2vfp_test.c 26 int expected = (isnan(a) || isnan(b)) ? 1 : 0;
  /src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/
unorddf2vfp_test.c 26 int expected = (isnan(a) || isnan(b)) ? 1 : 0;
unordsf2vfp_test.c 26 int expected = (isnan(a) || isnan(b)) ? 1 : 0;

Completed in 26 milliseconds

1 2 3 4 5 6 7 8 91011>>