Searched refs:isnan (Results 1 - 25 of 33) sorted by relevance

12

/haiku-fatelf/src/bin/coreutils/lib/
H A Disnanf-nolibm.h18 /* Get declaration of isnan macro or (older) isnanf function. */
21 /* GCC 4.0 and newer provides three built-ins for isnan. */
24 # elif defined isnan
26 # define isnanf(x) isnan ((float)(x))
H A Disnanl-nolibm.h18 /* Get declaration of isnan macro or (older) isnanl function. */
21 /* GCC 4.0 and newer provides three built-ins for isnan. */
24 # elif defined isnan
26 # define isnanl(x) isnan ((long double)(x))
H A Disnand-nolibm.h18 /* Get declaration of isnan macro. */
21 /* GCC 4.0 and newer provides three built-ins for isnan. */
26 # define isnand(x) isnan ((double)(x))
H A Dmath.h490 /* The original <math.h> included above provides a declaration of isnan macro
493 /* GCC 4.0 and newer provides three built-ins for isnan. */
496 # elif defined isnan
498 # define isnanf(x) isnan ((float)(x))
510 This function is a gnulib extension, unlike isnan() which applied only
513 /* The original <math.h> included above provides a declaration of isnan macro. */
515 /* GCC 4.0 and newer provides three built-ins for isnan. */
520 # define isnand(x) isnan ((double)(x))
533 /* The original <math.h> included above provides a declaration of isnan macro or (older) isnanl function. */
535 /* GCC 4.0 and newer provides three built-ins for isnan
583 _GL_WARN_REAL_FLOATING_DECL (isnan); variable
584 # undef isnan macro
585 # define isnan macro
[all...]
H A Dmath.in.h451 /* The original <math.h> included above provides a declaration of isnan macro
454 /* GCC 4.0 and newer provides three built-ins for isnan. */
457 # elif defined isnan
459 # define isnanf(x) isnan ((float)(x))
471 This function is a gnulib extension, unlike isnan() which applied only
474 /* The original <math.h> included above provides a declaration of isnan macro. */
476 /* GCC 4.0 and newer provides three built-ins for isnan. */
481 # define isnand(x) isnan ((double)(x))
494 /* The original <math.h> included above provides a declaration of isnan macro or (older) isnanl function. */
496 /* GCC 4.0 and newer provides three built-ins for isnan
536 # undef isnan macro
537 # define isnan macro
544 _GL_WARN_REAL_FLOATING_DECL (isnan); variable
545 # undef isnan macro
546 # define isnan macro
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/arch/generic/
H A Ds_fmaxf.c27 return (isgreaterequal (x, y) || isnan (y)) ? x : y;
H A Ds_fmaxl.c27 return (isgreaterequal (x, y) || isnan (y)) ? x : y;
H A Ds_fminf.c27 return (islessequal (x, y) || isnan (y)) ? x : y;
H A Ds_fminl.c27 return (islessequal (x, y) || isnan (y)) ? x : y;
H A Ds_cprojf.c30 if (isnan (__real__ x) && isnan (__imag__ x))
H A Ds_cprojl.c30 if (isnan (__real__ x) && isnan (__imag__ x))
H A Ds_fmax.c27 return (isgreaterequal (x, y) || isnan (y)) ? x : y;
H A Ds_fmin.c27 return (islessequal (x, y) || isnan (y)) ? x : y;
H A Ds_casin.c30 if (isnan (__real__ x) || isnan (__imag__ x))
H A Ds_casinf.c30 if (isnan (__real__ x) || isnan (__imag__ x))
H A Ds_casinl.c30 if (isnan (__real__ x) || isnan (__imag__ x))
H A Ds_cproj.c30 if (isnan (__real__ x) && isnan (__imag__ x))
H A Ds_isnan.c18 * isnan(x) returns 1 is x is nan, else 0;
40 weak_alias (__isnan, isnan)
/haiku-fatelf/src/tools/docbook/libxml2/include/
H A Dwin32config.h47 #ifndef isnan
48 #define isnan(d) (_isnan(d)) macro
68 #ifndef isnan
69 static int isnan (double d) { function
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dwin32config.h43 #ifndef isnan
44 #define isnan(d) (_isnan(d)) macro
62 static int isnan (double d) { function
/haiku-fatelf/src/system/libroot/posix/glibc/arch/ppc/
H A Ds_isnan.c51 weak_alias (__isnan, isnan)
/haiku-fatelf/src/tests/system/libroot/posix/math/
H A Dmath_test.cpp97 if ((x != y) && !(isnan(x) && isnan(y))) {
115 if ((x != y) && !(isnan(x) && isnan(y))) {
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dfloatformat.c568 if ((n != result && (! isnan (n) || ! isnan (result)))
575 if ((n != result && (! isnan (n) || ! isnan (result)))
/haiku-fatelf/src/system/libroot/posix/glibc/math/
H A Dmath.h222 # define isnan(x) \ macro
225 # define isnan(x) \ macro
/haiku-fatelf/src/system/libroot/posix/glibc/math/bits/
H A Dmathcalls.h213 __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));

Completed in 100 milliseconds

12