- t2ex
- bsd_source/lib/libc/src_bsd/include/math.h - 11.9KB - 470 lines
101: ((x) > (y) || (y) > (x)))
102: #define isunordered(x, y) (isnan(x) || isnan(y))
103: #endif /* __ISO_C_VISIBLE >= 1999 */
- More results from math.h
- bsd_source/lib/libc/src_bsd/math/b_exp__D.c - 4.6KB - 123 lines
88:
89: if (isnan(x)) /* x is NaN */
90: return(x);
- bsd_source/lib/libc/src_bsd/math/e_scalb.c - 1.0KB - 44 lines
33: {
34: if (isnan(x)||isnan(fn)) return x*fn;
35: if (!finite(fn)) {
- More results from e_scalb.c
- bsd_source/lib/libc/src_bsd/math/s_fdim.c - 1.9KB - 46 lines
36: \
37: if (isnan(x)) \
38: return (x); \
- More results from s_fdim.c
- bsd_source/lib/libc/src_bsd/math/s_fmax.c - 2.1KB - 60 lines
37: /* Check for NaNs to avoid raising spurious exceptions. */
38: if (isnan(x))
39: return (y);
- More results from s_fmax.c
- bsd_source/lib/libc/src_bsd/math/s_fmaxf.c - 1.9KB - 47 lines
33: /* Check for NaNs to avoid raising spurious exceptions. */
34: if (isnan(x))
35: return (y);
- More results from s_fmaxf.c
- bsd_source/lib/libc/src_bsd/math/s_fmin.c - 2.1KB - 60 lines
37: /* Check for NaNs to avoid raising spurious exceptions. */
38: if (isnan(x))
39: return (y);
- More results from s_fmin.c
- bsd_source/lib/libc/src_bsd/math/s_fminf.c - 1.9KB - 47 lines
33: /* Check for NaNs to avoid raising spurious exceptions. */
34: if (isnan(x))
35: return (y);
- More results from s_fminf.c
- bsd_source/lib/libc/src_bsd/math/s_round.c - 2.1KB - 65 lines
41:
42: if (isinf(x) || isnan(x))
43: return (x);
- bsd_source/t2ex/network/net/include/netbsd/math.h - 12.8KB - 488 lines
354:
355: #define isunordered(x, y) (isnan(x) || isnan(y))
356: #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y))
- More results from math.h