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

1 2

  /src/tests/lib/libc/gen/
t_fpclassify.c 338 ATF_CHECK_MSG(isnormal(d0), "d0=%a", d0);
380 ATF_CHECK_MSG(!isnormal(d1), "d1=%a", d1);
435 ATF_CHECK_MSG(!isnormal(d1), "d1=%a", d1);
473 ATF_CHECK_MSG(!isnormal(inf), "inf=%a", inf);
499 ATF_CHECK_MSG(!isnormal(-inf), "-inf=%a", -inf);
535 ATF_CHECK_MSG(!isnormal(nan), "nan=%a [0x%s]", nan, formatbitsf(&nan));
566 ATF_CHECK_MSG(!isnormal(nan), "nan=%a [0x%s]", nan, formatbitsf(&nan));
602 ATF_CHECK_MSG(!isnormal(nan), "nan=%a [0x%s]", nan, formatbitsf(&nan));
663 ATF_CHECK_MSG(isnormal(d0), "d0=%a", d0);
705 ATF_CHECK_MSG(!isnormal(d1), "d1=%a", d1)
    [all...]
  /src/external/gpl3/gcc/dist/fixincludes/tests/base/
math.h 135 #define isnormal(x) __builtin_isnormal(x) macro
  /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/
math.h 135 #define isnormal(x) __builtin_isnormal(x) macro
  /src/external/apache2/llvm/dist/clang/lib/Headers/
__clang_cuda_math_forward_declares.h 112 __DEVICE__ bool isnormal(double);
113 __DEVICE__ bool isnormal(float);
237 using ::isnormal;
__clang_cuda_cmath.h 147 __DEVICE__ bool isnormal(float __x) { return __builtin_isnormal(__x); } function
148 __DEVICE__ bool isnormal(double __x) { return __builtin_isnormal(__x); } function
275 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(bool, isnormal)
402 using ::isnormal;
__clang_hip_cmath.h 91 __DEVICE__ bool isnormal(float __x) { return __builtin_isnormal(__x); } function
92 __DEVICE__ bool isnormal(double __x) { return __builtin_isnormal(__x); } function
461 __HIP_OVERLOAD1(bool, isnormal)
625 using ::isnormal;
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
math.d 246 //int isnormal(real-floating x);
247 pure int isnormal(float x);
248 pure int isnormal(double x);
249 pure int isnormal(real x);
360 //int isnormal(real-floating x);
362 pure int isnormal(float x) { return fpclassify(x) == FP_NORMAL; }
364 pure int isnormal(double x) { return fpclassify(x) == FP_NORMAL; }
366 pure int isnormal(real x) { return fpclassify(x) == FP_NORMAL; }
501 //int isnormal(real-floating x);
503 int isnormal(float x) { return fpclassify(x) == FP_NORMAL;
    [all...]
  /src/lib/libm/src/
s_fmal.c 211 if (!isnormal(z))
s_fma.c 226 if (!isnormal(z))
  /src/sbin/routed/
radix.c 418 int maskduplicated, m0, isnormal; local
466 cplim = netmask + mlen; isnormal = 1;
473 isnormal = 0;
477 if (isnormal)
  /src/sys/net/
radix.c 490 int maskduplicated, m0, isnormal; local
537 cplim = netmask + mlen; isnormal = 1;
544 isnormal = 0;
548 if (isnormal)
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
math.h 67 using std::isnormal;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
math.h 67 using std::isnormal;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
simd_math.h 708 if (_GLIBCXX_SIMD_IS_LIKELY(all_of(isnormal(__x))))
730 where(!isnormal(__x), __mant) = __mant_subnormal;
736 const _MaskType __value_isnormal = isnormal(__x).__cvt();
795 auto __is_normal = isnormal(__x);
1010 if (_GLIBCXX_SIMD_IS_LIKELY(all_of(isnormal(__x))
1011 && all_of(isnormal(__y))))
1181 if (_GLIBCXX_SIMD_IS_LIKELY(all_of(isnormal(__x))
1182 && all_of(isnormal(__y))
1183 && all_of(isnormal(__z))))
1340 _GLIBCXX_SIMD_MATH_CALL_(isnormal)
    [all...]
simd_scalar.h 597 { return std::isnormal(__x); }
simd_fixed_size.h 1670 _GLIBCXX_SIMD_TEST_ON_TUPLE_(isnormal)
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/
simd_math.h 696 if (_GLIBCXX_SIMD_IS_LIKELY(all_of(isnormal(__x))))
718 where(!isnormal(__x), __mant) = __mant_subnormal;
724 const _MaskType __value_isnormal = isnormal(__x).__cvt();
783 auto __is_normal = isnormal(__x);
998 if (_GLIBCXX_SIMD_IS_LIKELY(all_of(isnormal(__x))
999 && all_of(isnormal(__y))))
1168 if (_GLIBCXX_SIMD_IS_LIKELY(all_of(isnormal(__x))
1169 && all_of(isnormal(__y))
1170 && all_of(isnormal(__z))))
1327 _GLIBCXX_SIMD_MATH_CALL_(isnormal)
    [all...]
simd_scalar.h 597 { return std::isnormal(__x); }
simd_fixed_size.h 1670 _GLIBCXX_SIMD_TEST_ON_TUPLE_(isnormal)
  /src/lib/libc/gen/
Makefile.inc 74 isnormal.3 isprint.3 ispunct.3 isspace.3 isupper.3 isxdigit.3 \
  /src/include/
math.h 313 /* 7.12.3.5 int isnormal(real-floating x) */
314 #define isnormal(__x) (fpclassify(__x) == FP_NORMAL) macro
  /src/tests/lib/libm/
t_next.c 90 if (isnormal(x[i])) {
114 if (isnormal(x[i])) {
172 if (isnormal(x[i])) {
195 if (isnormal(x[i])) {
  /src/external/apache2/llvm/dist/libcxx/include/
math.h 143 bool isnormal(arithmetic x);
567 // isnormal
569 #ifdef isnormal
579 return isnormal(__lcpp_x);
583 #undef isnormal macro
588 isnormal(_A1 __lcpp_x) _NOEXCEPT
596 isnormal(_A1 __lcpp_x) _NOEXCEPT
599 #endif // isnormal
  /src/external/gpl3/gcc/dist/libgfortran/
libgfortran.h 244 /* The C99 classification macros isfinite, isinf, isnan, isnormal
258 #undef isnormal macro
259 #define isnormal(x) __builtin_isnormal(x) macro
  /src/external/gpl3/gcc.old/dist/libgfortran/
libgfortran.h 244 /* The C99 classification macros isfinite, isinf, isnan, isnormal
258 #undef isnormal macro
259 #define isnormal(x) __builtin_isnormal(x) macro

Completed in 53 milliseconds

1 2