| /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/lib/libm/src/ |
| s_isnan.c | 19 * isnan(x) returns 1 is x is nan, else 0; 27 isnan(double x) function
|
| /src/external/apache2/llvm/dist/libcxx/include/ |
| math.h | 142 bool isnan(arithmetic x); 519 // isnan 521 #ifdef isnan 531 return isnan(__lcpp_x); 535 #undef isnan macro 540 isnan(_A1 __lcpp_x) _NOEXCEPT 548 isnan(_A1) _NOEXCEPT 554 isnan(float __lcpp_x) _NOEXCEPT { return __libcpp_isnan(__lcpp_x); } 558 isnan(double __lcpp_x) _NOEXCEPT { return __libcpp_isnan(__lcpp_x); } 562 isnan(long double __lcpp_x) _NOEXCEPT { return __libcpp_isnan(__lcpp_x); [all...] |
| /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...] |
| _divkc3.c | 42 #define isnan __builtin_isnan macro 170 if (isnan (x) && isnan (y)) 172 if (c == 0.0 && d == 0.0 && (!isnan (a) || !isnan (b)))
|
| /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...] |
| _divkc3.c | 32 #define isnan __builtin_isnan macro 160 if (isnan (x) && isnan (y)) 162 if (c == 0.0 && d == 0.0 && (!isnan (a) || !isnan (b)))
|
| /src/lib/libm/arch/vax/ |
| n_support.S | 120 /* int isnan(double x); 123 ENTRY(isnan, 0) function
|
| /src/external/gpl3/gcc/dist/fixincludes/tests/base/ |
| math.h | 136 #define isnan(x) __builtin_isnan(x) macro
|
| /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/ |
| math.h | 136 #define isnan(x) __builtin_isnan(x) macro
|
| /src/lib/libm/complex/ |
| catrig.c | 52 #undef isnan macro 53 #define isnan(x) ((x) != (x)) macro 309 if (isnan(x) || isnan(y)) { 393 if (isnan(x) || isnan(y)) { 462 if (isnan(rx) && isnan(ry)) 466 if (isnan(rx)) 469 if (isnan(ry) [all...] |
| catrigf.c | 65 #undef isnan macro 66 #define isnan(x) ((x) != (x)) macro 170 if (isnan(x) || isnan(y)) { 228 if (isnan(x) || isnan(y)) { 281 if (isnan(rx) && isnan(ry)) 283 if (isnan(rx)) 285 if (isnan(ry) [all...] |
| catrigl.c | 59 #undef isnan macro 60 #define isnan(x) ((x) != (x)) macro 203 if (isnan(x) || isnan(y)) { 258 if (isnan(x) || isnan(y)) { 310 if (isnan(rx) && isnan(ry)) 312 if (isnan(rx)) 314 if (isnan(ry) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Headers/ |
| __clang_cuda_cmath.h | 73 // `isinf(float)` and `isnan(float)` implementations that return an `int`. We do 94 __DEVICE__ int isnan(float __x) { return ::__isnanf(__x); } function 95 __DEVICE__ int isnan(double __x) { return ::__isnan(__x); } function 108 __DEVICE__ bool isnan(float __x) { return ::__isnanf(__x); } function 109 __DEVICE__ bool isnan(double __x) { return ::__isnan(__x); } function 274 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(bool, isnan); 434 // pull them in with libstdc++, because its ::isinf and ::isnan are different 435 // than its std::isinf and std::isnan. 438 using ::isnan;
|
| __clang_hip_cmath.h | 89 __DEVICE__ bool isnan(float __x) { return ::__isnanf(__x); } function 90 __DEVICE__ bool isnan(double __x) { return ::__isnan(__x); } function 460 __HIP_OVERLOAD1(bool, isnan) 662 // pull them in with libstdc++, because its ::isinf and ::isnan are different 663 // than its std::isinf and std::isnan. 666 using ::isnan;
|
| /src/include/ |
| math.h | 478 #define isunordered(x, y) (isnan(x) || isnan(y)) 508 /* 7.12.3.4 int isnan(real-floating x) */ 510 #define isnan(__x) __isnan(__x) macro 512 #define isnan(__x) __fpmacro_unary_floating(isnan, __x) macro
|
| /src/external/gpl3/gdb/dist/sim/ppc/ |
| dp-bit.c | 277 #define isnan(x) 0 macro 292 isnan ( fp_number_type * x) function 328 if (isnan (src)) 487 if (isnan (a)) 491 if (isnan (b)) 650 if (isnan (a)) 655 if (isnan (b)) 842 if (isnan (a)) 846 if (isnan (b)) 950 if (isnan (a) && isnan (b) [all...] |
| /src/external/gpl3/gdb/lib/libgnulib/arch/aarch64/gnulib/import/ |
| math.h | 3000 /* The original <math.h> included above provides a declaration of isnan macro 3003 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. 3007 # elif defined isnan 3009 # define isnanf(x) isnan ((float)(x)) 3021 This function is a gnulib extension, unlike isnan() which applied only 3024 /* The original <math.h> included above provides a declaration of isnan 3027 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. */ 3032 # define isnand(x) isnan ((double)(x)) 3045 /* The original <math.h> included above provides a declaration of isnan 3048 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan 3123 _GL_WARN_REAL_FLOATING_DECL (isnan); variable 3124 # undef isnan macro 3125 # define isnan macro [all...] |
| /src/external/gpl3/gdb/lib/libgnulib/arch/aarch64eb/gnulib/import/ |
| math.h | 3000 /* The original <math.h> included above provides a declaration of isnan macro 3003 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. 3007 # elif defined isnan 3009 # define isnanf(x) isnan ((float)(x)) 3021 This function is a gnulib extension, unlike isnan() which applied only 3024 /* The original <math.h> included above provides a declaration of isnan 3027 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. */ 3032 # define isnand(x) isnan ((double)(x)) 3045 /* The original <math.h> included above provides a declaration of isnan 3048 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan 3123 _GL_WARN_REAL_FLOATING_DECL (isnan); variable 3124 # undef isnan macro 3125 # define isnan macro [all...] |
| /src/external/gpl3/gdb/lib/libgnulib/arch/alpha/gnulib/import/ |
| math.h | 3000 /* The original <math.h> included above provides a declaration of isnan macro 3003 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. 3007 # elif defined isnan 3009 # define isnanf(x) isnan ((float)(x)) 3021 This function is a gnulib extension, unlike isnan() which applied only 3024 /* The original <math.h> included above provides a declaration of isnan 3027 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. */ 3032 # define isnand(x) isnan ((double)(x)) 3045 /* The original <math.h> included above provides a declaration of isnan 3048 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan 3123 _GL_WARN_REAL_FLOATING_DECL (isnan); variable 3124 # undef isnan macro 3125 # define isnan macro [all...] |
| /src/external/gpl3/gdb/lib/libgnulib/arch/arm/gnulib/import/ |
| math.h | 3000 /* The original <math.h> included above provides a declaration of isnan macro 3003 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. 3007 # elif defined isnan 3009 # define isnanf(x) isnan ((float)(x)) 3021 This function is a gnulib extension, unlike isnan() which applied only 3024 /* The original <math.h> included above provides a declaration of isnan 3027 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. */ 3032 # define isnand(x) isnan ((double)(x)) 3045 /* The original <math.h> included above provides a declaration of isnan 3048 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan 3123 _GL_WARN_REAL_FLOATING_DECL (isnan); variable 3124 # undef isnan macro 3125 # define isnan macro [all...] |
| /src/external/gpl3/gdb/lib/libgnulib/arch/armeb/gnulib/import/ |
| math.h | 3000 /* The original <math.h> included above provides a declaration of isnan macro 3003 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. 3007 # elif defined isnan 3009 # define isnanf(x) isnan ((float)(x)) 3021 This function is a gnulib extension, unlike isnan() which applied only 3024 /* The original <math.h> included above provides a declaration of isnan 3027 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. */ 3032 # define isnand(x) isnan ((double)(x)) 3045 /* The original <math.h> included above provides a declaration of isnan 3048 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan 3123 _GL_WARN_REAL_FLOATING_DECL (isnan); variable 3124 # undef isnan macro 3125 # define isnan macro [all...] |
| /src/external/gpl3/gdb/lib/libgnulib/arch/hppa/gnulib/import/ |
| math.h | 3000 /* The original <math.h> included above provides a declaration of isnan macro 3003 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. 3007 # elif defined isnan 3009 # define isnanf(x) isnan ((float)(x)) 3021 This function is a gnulib extension, unlike isnan() which applied only 3024 /* The original <math.h> included above provides a declaration of isnan 3027 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. */ 3032 # define isnand(x) isnan ((double)(x)) 3045 /* The original <math.h> included above provides a declaration of isnan 3048 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan 3123 _GL_WARN_REAL_FLOATING_DECL (isnan); variable 3124 # undef isnan macro 3125 # define isnan macro [all...] |
| /src/external/gpl3/gdb/lib/libgnulib/arch/i386/gnulib/import/ |
| math.h | 3000 /* The original <math.h> included above provides a declaration of isnan macro 3003 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. 3007 # elif defined isnan 3009 # define isnanf(x) isnan ((float)(x)) 3021 This function is a gnulib extension, unlike isnan() which applied only 3024 /* The original <math.h> included above provides a declaration of isnan 3027 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. */ 3032 # define isnand(x) isnan ((double)(x)) 3045 /* The original <math.h> included above provides a declaration of isnan 3048 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan 3123 _GL_WARN_REAL_FLOATING_DECL (isnan); variable 3124 # undef isnan macro 3125 # define isnan macro [all...] |
| /src/external/gpl3/gdb/lib/libgnulib/arch/ia64/gnulib/import/ |
| math.h | 3000 /* The original <math.h> included above provides a declaration of isnan macro 3003 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. 3007 # elif defined isnan 3009 # define isnanf(x) isnan ((float)(x)) 3021 This function is a gnulib extension, unlike isnan() which applied only 3024 /* The original <math.h> included above provides a declaration of isnan 3027 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan. */ 3032 # define isnand(x) isnan ((double)(x)) 3045 /* The original <math.h> included above provides a declaration of isnan 3048 /* GCC >= 4.0 and clang provide a type-generic built-in for isnan 3123 _GL_WARN_REAL_FLOATING_DECL (isnan); variable 3124 # undef isnan macro 3125 # define isnan macro [all...] |